diff options
author | Marvin Borner | 2020-09-03 18:47:38 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-03 18:47:38 +0200 |
commit | 15a8cb8fa64b12d6c0b65eafb226971cd66dc3cd (patch) | |
tree | 10669f647c05299601497c277b2d4d4e89c4c9af /kernel/features/syscall.c | |
parent | d79b7492910d4a77b8c3a70f28c5ea4c81a0b2e5 (diff) |
Moved test to app
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: { |