diff options
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index ab14539..6a64996 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -24,8 +24,7 @@ static void syscall_handler(struct regs *r) switch (num) { case SYS_LOOP: { - loop(); - panic("Fell out of the looping!\n"); + panic("Loop is deprecated!\n"); break; } case SYS_ALLOC: { @@ -134,7 +133,7 @@ static void syscall_handler(struct regs *r) } } -void syscall_init(void) +CLEAR void syscall_init(void) { idt_set_gate(0x80, (u32)isr128, 0x08, 0x8E); isr_install_handler(0x80, syscall_handler); |