aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/assert.h
diff options
context:
space:
mode:
authorMarvin Borner2021-06-02 22:27:59 +0200
committerMarvin Borner2021-06-02 22:27:59 +0200
commit98e15f73f090c32b5197ecec0845c408d4a54608 (patch)
tree31490731c74b45e2450de56c0c4ea4abd3f3b54d /libs/libc/inc/assert.h
parent91ba8d02037cc27c7b44f1bfd492c42ccd0af042 (diff)
Huge scheduler rewrite and other things
Diffstat (limited to 'libs/libc/inc/assert.h')
-rw-r--r--libs/libc/inc/assert.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/libc/inc/assert.h b/libs/libc/inc/assert.h
index 6b35dd3..178a733 100644
--- a/libs/libc/inc/assert.h
+++ b/libs/libc/inc/assert.h
@@ -12,7 +12,8 @@
if (!(exp)) { \
printf("%s:%d: %s: Kernel assertion '%s' failed\n", __FILE__, __LINE__, \
__func__, #exp); \
- __asm__ volatile("cli\nhlt"); \
+ while (1) \
+ __asm__ volatile("cli\nhlt"); \
} \
}
#elif defined(USER)
@@ -25,4 +26,7 @@
}
#endif
+#define assert_not_reached() \
+ panic("%s:%d: %s: Reached code that should not be reached\n", __FILE__, __LINE__, __func__)
+
#endif