Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/abs32le/src/abs32le.c

    rd32358f rda52547  
    3434
    3535#include <arch.h>
    36 #include <arch/types.h>
    37 #include <arch/context.h>
     36#include <typedefs.h>
    3837#include <arch/interrupt.h>
    3938#include <arch/asm.h>
     
    4140#include <func.h>
    4241#include <config.h>
     42#include <errno.h>
    4343#include <context.h>
     44#include <fpu_context.h>
    4445#include <interrupt.h>
     46#include <syscall/copy.h>
    4547#include <ddi/irq.h>
    4648#include <proc/thread.h>
     
    4951#include <sysinfo/sysinfo.h>
    5052#include <memstr.h>
     53
     54char memcpy_from_uspace_failover_address;
     55char memcpy_to_uspace_failover_address;
    5156
    5257void arch_pre_mm_init(void)
     
    8388unative_t sys_tls_set(unative_t addr)
    8489{
    85         return 0;
     90        return EOK;
    8691}
    8792
     
    109114}
    110115
    111 void memsetb(void *dst, size_t cnt, uint8_t val)
     116void istate_decode(istate_t *istate)
    112117{
    113         _memsetb(dst, cnt, val);
    114 }
    115 
    116 void memsetw(void *dst, size_t cnt, uint16_t val)
    117 {
    118         _memsetw(dst, cnt, val);
    119 }
    120 
    121 void panic_printf(char *fmt, ...)
    122 {
    123         va_list args;
    124        
    125         va_start(args, fmt);
    126         vprintf(fmt, args);
    127         va_end(args);
    128        
    129         halt();
     118        (void) istate;
    130119}
    131120
     
    140129}
    141130
     131void fpu_init(void)
     132{
     133}
     134
     135void fpu_context_save(fpu_context_t *ctx)
     136{
     137}
     138
     139void fpu_context_restore(fpu_context_t *ctx)
     140{
     141}
     142
     143int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)
     144{
     145        return EOK;
     146}
     147
     148int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)
     149{
     150        return EOK;
     151}
     152
     153void early_putchar(wchar_t ch)
     154{
     155}
     156
    142157/** @}
    143158 */
Note: See TracChangeset for help on using the changeset viewer.