aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall
diff options
context:
space:
mode:
authorMarvin Borner2020-02-15 16:57:57 +0100
committerMarvin Borner2020-02-15 16:57:57 +0100
commitf5b995586e28f7db426f4707a4348dc067df41c0 (patch)
tree37bfd54a3ecbe6dca0b2c4530dd28d3177c98362 /src/kernel/syscall
parent7ec74159de339baf3687bc59f1c18309b23ef36b (diff)
Quite many improvements
ok.
Diffstat (limited to 'src/kernel/syscall')
-rw-r--r--src/kernel/syscall/syscall.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c
index 7ca7f99..bb3a01e 100644
--- a/src/kernel/syscall/syscall.c
+++ b/src/kernel/syscall/syscall.c
@@ -28,7 +28,8 @@ void syscall_handler(struct regs *r)
if (!location)
return;
- //serial_printf("[SYSCALL] %d (0x%x) 0x%x 0x%x 0x%x 0x%x 0x%x", r->eax, location, r->ebx, r->ecx, r->edx, r->esi, r->edi);
+ serial_printf("[SYSCALL] %d (0x%x) 0x%x 0x%x 0x%x 0x%x 0x%x", r->eax, location, r->ebx, r->ecx, r->edx, r->esi,
+ r->edi);
r->eax = location(r->ebx, r->ecx, r->edx, r->esi, r->edi);
}