aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-22 23:31:47 +0200
committerMarvin Borner2020-08-22 23:31:47 +0200
commitb667ea0fbd26af222f828199e7b9a7e62ad98081 (patch)
tree90dac52e2cf0a898da0097e9b1375506309b673f /kernel/features/syscall.c
parent32f63ffc96f7f7ec6c504b8f50292316f026dd21 (diff)
Some window fb and yield implementation
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r--kernel/features/syscall.c7
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();