1 2 3 4 5 6 7 8
#include <stdint.h> #include <tasks/process.h> u32 sys_exit(u32 code) { current_proc->state = PROC_ASLEEP; return code; }