Nucleus
Barry Per-CPU Scheduler bb0cb77 (3 years, 2 months ago)diff --git a/task/syscall.c b/task/syscall.c index effe6c2..ba7937e 100644 --- a/task/syscall.c +++ b/task/syscall.c @@ -93,7 +93,7 @@ syscall_handler(struct InterruptFrame *frame) int num = frame->eax; uintptr_t args = frame->esi; int ret = -EINVAL; - enter_syscall_context(num); + enter_syscall_context(); /* Find syscall entry */ if (num >= sizeof(syscalls) / sizeof(syscalls[0]))