diff options
author | Marvin Borner | 2020-05-07 18:10:22 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-07 18:10:22 +0200 |
commit | 4286b14839c0c4ec016d816e426660f6685ae349 (patch) | |
tree | ccfefa4313d012fb78d8252cff98d27dfd187dc8 /src/kernel/syscall/syscall.c | |
parent | 130121dd61a9adf70d1800ceb03007275bfb589d (diff) |
Fixed many bugs with wait() and fork()
This also adds many race conditions which really need to be fixed..
Diffstat (limited to 'src/kernel/syscall/syscall.c')
-rw-r--r-- | src/kernel/syscall/syscall.c | 1 |
1 files changed, 0 insertions, 1 deletions
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(); } |