Changes in kernel/arch/riscv64/src/riscv64.c [6c742f5e:b2e121a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/riscv64/src/riscv64.c
r6c742f5e rb2e121a 40 40 #include <arch/drivers/ucb.h> 41 41 42 #include < func.h>42 #include <halt.h> 43 43 #include <config.h> 44 44 #include <errno.h> … … 143 143 } 144 144 145 int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)145 errno_t memcpy_from_uspace(void *dst, const void *uspace_src, size_t size) 146 146 { 147 147 return EOK; 148 148 } 149 149 150 int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)150 errno_t memcpy_to_uspace(void *uspace_dst, const void *src, size_t size) 151 151 { 152 152 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.