diff options
author | Marvin Borner | 2021-01-09 14:06:32 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-09 14:06:32 +0100 |
commit | dcd28d5246eec562c195fba07c7bd4ce7b69c94b (patch) | |
tree | 43b425108b5a6822e35a89779465fc19376ca74a /libc/inc/assert.h | |
parent | ca466dbbecd387481fbde95e1e3d9b6ff279c169 (diff) |
Started new heap implementation (not working yet)
Diffstat (limited to 'libc/inc/assert.h')
-rw-r--r-- | libc/inc/assert.h | 3 |
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); \ |