summaryrefslogtreecommitdiff
path: root/kernel/libc/exit
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-03-14 13:09:59 +0100
committerAnton Kling <anton@kling.gg>2024-03-14 13:09:59 +0100
commit2e8b474d4219e7faaac3823e73c8d528c2698a37 (patch)
tree7d93b5fd220e8b703ba69f9b55122d15c9d619fb /kernel/libc/exit
parent051ac9f1941e8bc6ad87beccb61a2d53111ba8ea (diff)
random changes made
Diffstat (limited to 'kernel/libc/exit')
-rw-r--r--kernel/libc/exit/assert.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/libc/exit/assert.c b/kernel/libc/exit/assert.c
index 47c0704..89aa863 100644
--- a/kernel/libc/exit/assert.c
+++ b/kernel/libc/exit/assert.c
@@ -8,4 +8,5 @@ __attribute__((__noreturn__)) void aFailed(char *f, int l) {
kprintf("%s : %d\n", f, l);
dump_backtrace(10);
halt();
+ kprintf("after halt?\n");
}