aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/assert.h
diff options
context:
space:
mode:
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