diff options
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index 9bd5e9b..2a310ef 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -17,7 +17,7 @@ void syscall_handler(struct regs *r) enum sys num = r->eax; r->eax = 0; - if (num != SYS_RECEIVE) + if (num != SYS_RECEIVE && num != SYS_YIELD) printf("[SYSCALL] %d: ", num); switch (num) { @@ -69,6 +69,11 @@ void syscall_handler(struct regs *r) proc_exit(proc_current(), r->ebx); break; } + case SYS_YIELD: { + /* printf("yield\n"); */ + proc_yield(); + break; + } case SYS_TIME: { printf("time\n"); r->eax = timer_get(); |