aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/assert.h
diff options
context:
space:
mode:
authorMarvin Borner2021-01-09 14:06:32 +0100
committerMarvin Borner2021-01-09 14:06:32 +0100
commitdcd28d5246eec562c195fba07c7bd4ce7b69c94b (patch)
tree43b425108b5a6822e35a89779465fc19376ca74a /libc/inc/assert.h
parentca466dbbecd387481fbde95e1e3d9b6ff279c169 (diff)
Started new heap implementation (not working yet)
Diffstat (limited to 'libc/inc/assert.h')
-rw-r--r--libc/inc/assert.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/inc/assert.h b/libc/inc/assert.h
index 3e45f44..e42fc5a 100644
--- a/libc/inc/assert.h
+++ b/libc/inc/assert.h
@@ -9,7 +9,8 @@
#include <proc.h>
#define assert(exp) \
if (!(exp)) { \
- printf("%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp); \
+ printf("%s:%d: %s: Kernel assertion '%s' failed\n", __FILE__, __LINE__, __func__, \
+ #exp); \
struct proc *assert_proc = proc_current(); \
if (assert_proc) \
proc_exit(assert_proc, 1); \