Changes in kernel/arch/abs32le/src/abs32le.c [d32358f:da52547] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/src/abs32le.c
rd32358f rda52547 34 34 35 35 #include <arch.h> 36 #include <arch/types.h> 37 #include <arch/context.h> 36 #include <typedefs.h> 38 37 #include <arch/interrupt.h> 39 38 #include <arch/asm.h> … … 41 40 #include <func.h> 42 41 #include <config.h> 42 #include <errno.h> 43 43 #include <context.h> 44 #include <fpu_context.h> 44 45 #include <interrupt.h> 46 #include <syscall/copy.h> 45 47 #include <ddi/irq.h> 46 48 #include <proc/thread.h> … … 49 51 #include <sysinfo/sysinfo.h> 50 52 #include <memstr.h> 53 54 char memcpy_from_uspace_failover_address; 55 char memcpy_to_uspace_failover_address; 51 56 52 57 void arch_pre_mm_init(void) … … 83 88 unative_t sys_tls_set(unative_t addr) 84 89 { 85 return 0;90 return EOK; 86 91 } 87 92 … … 109 114 } 110 115 111 void memsetb(void *dst, size_t cnt, uint8_t val)116 void istate_decode(istate_t *istate) 112 117 { 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; 130 119 } 131 120 … … 140 129 } 141 130 131 void fpu_init(void) 132 { 133 } 134 135 void fpu_context_save(fpu_context_t *ctx) 136 { 137 } 138 139 void fpu_context_restore(fpu_context_t *ctx) 140 { 141 } 142 143 int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size) 144 { 145 return EOK; 146 } 147 148 int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size) 149 { 150 return EOK; 151 } 152 153 void early_putchar(wchar_t ch) 154 { 155 } 156 142 157 /** @} 143 158 */
Note:
See TracChangeset
for help on using the changeset viewer.