Changeset c2efbb4 in mainline for kernel/arch/abs32le/src/abs32le.c
- Timestamp:
- 2010-02-20T20:54:53Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 721d4e85, 95c4776
- Parents:
- f516bc2 (diff), b03a666 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/src/abs32le.c
rf516bc2 rc2efbb4 35 35 #include <arch.h> 36 36 #include <arch/types.h> 37 #include <arch/context.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)112 {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 116 void panic_printf(char *fmt, ...) 122 117 { … … 140 135 } 141 136 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 142 159 /** @} 143 160 */
Note:
See TracChangeset
for help on using the changeset viewer.