diff options
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index 98a7ff9..65777d8 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -23,10 +23,6 @@ static void syscall_handler(struct regs *r) /* printf("[SYSCALL] %d from %s\n", num, proc_current()->name); */ switch (num) { - case SYS_LOOP: { - panic("Loop is deprecated!\n"); - break; - } case SYS_ALLOC: { r->eax = memory_sys_alloc(proc_current()->page_dir, r->ebx, (u32 *)r->ecx, (u32 *)r->edx, (u8)r->esi); |