From 4286b14839c0c4ec016d816e426660f6685ae349 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 7 May 2020 18:10:22 +0200 Subject: Fixed many bugs with wait() and fork() This also adds many race conditions which really need to be fixed.. --- src/kernel/syscall/syscall.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/kernel/syscall/syscall.c') diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c index f1ee003..a5048ef 100644 --- a/src/kernel/syscall/syscall.c +++ b/src/kernel/syscall/syscall.c @@ -40,7 +40,6 @@ void syscall_handler(struct regs *r) r->eax = location(r); else r->eax = location(r->ebx, r->ecx, r->edx, r->esi, r->edi); - sti(); } -- cgit v1.2.3