diff options
Diffstat (limited to 'src/stem/task/syscall.c')
-rw-r--r-- | src/stem/task/syscall.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stem/task/syscall.c b/src/stem/task/syscall.c index 0878b30..5aab011 100644 --- a/src/stem/task/syscall.c +++ b/src/stem/task/syscall.c @@ -8,13 +8,14 @@ CALL0(thread_exit, thread_exit_sc); CALL0(tasking_switch, schedule_sc); +CALL1(thread_sleep, thread_sleep_sc); CALL1(process_exit, process_exit_sc); CALL1(monitor_write, printk_sc); int_callback syscalls[] = { thread_exit_sc, schedule_sc, - 0, //Syscall 2 will be thread_sleep + thread_sleep_sc, process_exit_sc, printk_sc, 0 }; |