Changes in kernel/arch/riscv64/src/userspace.c [c5429fe:3fcea34] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/riscv64/src/userspace.c
rc5429fe r3fcea34 33 33 */ 34 34 35 #include <abi/proc/uarg.h>36 35 #include <userspace.h> 37 36 38 void userspace(uspace_arg_t *kernel_uarg) 37 uintptr_t arch_get_initial_sp(uintptr_t stack_base, uintptr_t stack_size) 38 { 39 return stack_base + stack_size; 40 } 41 42 void userspace(uintptr_t pc, uintptr_t sp) 39 43 { 40 44 // FIXME
Note:
See TracChangeset
for help on using the changeset viewer.