aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/assert.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-16 00:44:53 +0200
committerMarvin Borner2020-08-16 00:44:53 +0200
commitc4a0bc2571162ad83fc51eb823f1c535336041bf (patch)
treecba1169a027fea8884e882be601bf3cbaeaab654 /libc/inc/assert.h
parent9a827eb5f6ff58bf801bc98bcb653876428ebe69 (diff)
Added psf/gui to libgui
...and some other things
Diffstat (limited to 'libc/inc/assert.h')
-rw-r--r--libc/inc/assert.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libc/inc/assert.h b/libc/inc/assert.h
index 91c4ccd..a553444 100644
--- a/libc/inc/assert.h
+++ b/libc/inc/assert.h
@@ -5,10 +5,21 @@
#include <print.h>
+#ifdef kernel
#define assert(exp) \
if (!(exp)) { \
printf("%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp); \
__asm__ volatile("cli\nhlt"); \
}
+#elif defined(userspace)
+#include <sys.h>
+#define assert(exp) \
+ if (!(exp)) { \
+ printf("%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp); \
+ sys0(SYS_LOOP); \
+ }
+#else
+#error "No lib target specified. Please use -Dkernel or -Duserspace"
+#endif
#endif