aboutsummaryrefslogtreecommitdiff
path: root/kernel/features
diff options
context:
space:
mode:
authorMarvin Borner2021-02-18 21:04:50 +0100
committerMarvin Borner2021-02-18 21:04:50 +0100
commit2ae5e5b31a943719083dd64ee24c4200220f7ff0 (patch)
treef1f6481c4a2f63dc95b296a304476711ca19545b /kernel/features
parente28ea65105c4afd3a3dea7d050b392565d15120d (diff)
Switched to default lodepng version
This should be a bit faster and less buggy
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();