aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2020-09-11 22:54:38 +0200
committerMarvin Borner2020-09-11 22:54:38 +0200
commite37e7eefcb0148651331d6a750846f26ecf11126 (patch)
tree2aad5993414d344900a7ade53ccddbc8586ccb54 /kernel/features/syscall.c
parent8eb9ee85529a6140a533ffeb52f5e7f4078d9f27 (diff)
Removed wait syscall - whoopsidoo!
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r--kernel/features/syscall.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c
index b3af455..25770a4 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 && num != SYS_YIELD && num != SYS_WAIT && num != SYS_TIME)
+ if (num != SYS_RECEIVE && num != SYS_YIELD && num != SYS_TIME)
printf("[SYSCALL] %d from %s: ", num, proc_current()->name);
switch (num) {
@@ -74,12 +74,6 @@ void syscall_handler(struct regs *r)
proc_yield(r);
break;
}
- case SYS_WAIT: {
- /* printf("wait\n"); */
- proc_current()->state = PROC_WAITING;
- proc_yield(r);
- break;
- }
case SYS_TIME: {
/* printf("time\n"); */
r->eax = timer_get();