From 2ae5e5b31a943719083dd64ee24c4200220f7ff0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 18 Feb 2021 21:04:50 +0100 Subject: Switched to default lodepng version This should be a bit faster and less buggy --- kernel/features/proc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'kernel/features') 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(); -- cgit v1.2.3