aboutsummaryrefslogtreecommitdiff
path: root/kernel/features
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/features')
-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 2ca213b..0c8f75c 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -142,7 +142,8 @@ void proc_exit(struct proc *proc, int status)
current = NULL;
if (res)
- printf("Process %s exited with status %d\n", proc->name, status);
+ printf("Process %s exited with status %d (%s)\n", proc->name, status,
+ status == 0 ? "success" : "error");
proc_clear_quantum(); // TODO: Add quantum to each process struct?
sti();