Ignore:
File:
1 edited

Legend:

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

    rfb52db8 rd32358f  
    3535#include <arch.h>
    3636#include <arch/types.h>
     37#include <arch/context.h>
    3738#include <arch/interrupt.h>
    3839#include <arch/asm.h>
     
    4041#include <func.h>
    4142#include <config.h>
    42 #include <errno.h>
    4343#include <context.h>
    44 #include <fpu_context.h>
    4544#include <interrupt.h>
    46 #include <syscall/copy.h>
    4745#include <ddi/irq.h>
    4846#include <proc/thread.h>
     
    5149#include <sysinfo/sysinfo.h>
    5250#include <memstr.h>
    53 
    54 char memcpy_from_uspace_failover_address;
    55 char memcpy_to_uspace_failover_address;
    5651
    5752void arch_pre_mm_init(void)
     
    8883unative_t sys_tls_set(unative_t addr)
    8984{
    90         return EOK;
     85        return 0;
    9186}
    9287
     
    114109}
    115110
     111void memsetb(void *dst, size_t cnt, uint8_t val)
     112{
     113        _memsetb(dst, cnt, val);
     114}
     115
     116void memsetw(void *dst, size_t cnt, uint16_t val)
     117{
     118        _memsetw(dst, cnt, val);
     119}
     120
    116121void panic_printf(char *fmt, ...)
    117122{
     
    135140}
    136141
    137 void fpu_init(void)
    138 {
    139 }
    140 
    141 void fpu_context_save(fpu_context_t *ctx)
    142 {
    143 }
    144 
    145 void fpu_context_restore(fpu_context_t *ctx)
    146 {
    147 }
    148 
    149 int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)
    150 {
    151         return EOK;
    152 }
    153 
    154 int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)
    155 {
    156         return EOK;
    157 }
    158 
    159142/** @}
    160143 */
Note: See TracChangeset for help on using the changeset viewer.