aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/features/proc.c')
-rw-r--r--kernel/features/proc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c
index 5d3c8aa..ff4638b 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -144,7 +144,8 @@ void proc_exit(struct proc *proc, int status)
current = NULL;
if (res)
- printf("Process %s exited with status %d (%s)\n", proc->name, status,
+ printf("Process %s (%d) exited with status %d (%s)\n",
+ proc->name[0] ? proc->name : "UNKNOWN", proc->pid, status,
status == 0 ? "success" : "error");
virtual_destroy_dir(proc->page_dir);