diff options
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index 5915d9d..25770a4 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -18,7 +18,7 @@ void syscall_handler(struct regs *r) r->eax = 0; if (num != SYS_RECEIVE && num != SYS_YIELD && num != SYS_TIME) - printf("[SYSCALL] %d: ", num); + printf("[SYSCALL] %d from %s: ", num, proc_current()->name); switch (num) { case SYS_LOOP: { |