Changes in kernel/arch/abs32le/src/abs32le.c [44a7ee5:b2e121a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/src/abs32le.c
r44a7ee5 rb2e121a 38 38 #include <arch/asm.h> 39 39 40 #include < func.h>40 #include <halt.h> 41 41 #include <config.h> 42 42 #include <console/console.h> … … 105 105 int context_save_arch(context_t *ctx) 106 106 { 107 return 1;107 return EOK; 108 108 } 109 109 … … 125 125 } 126 126 127 int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)127 errno_t memcpy_from_uspace(void *dst, const void *uspace_src, size_t size) 128 128 { 129 129 return EOK; 130 130 } 131 131 132 int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)132 errno_t memcpy_to_uspace(void *uspace_dst, const void *src, size_t size) 133 133 { 134 134 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.