diff options
author | Marvin Borner | 2020-08-16 00:44:53 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-16 00:44:53 +0200 |
commit | c4a0bc2571162ad83fc51eb823f1c535336041bf (patch) | |
tree | cba1169a027fea8884e882be601bf3cbaeaab654 /libc/inc/assert.h | |
parent | 9a827eb5f6ff58bf801bc98bcb653876428ebe69 (diff) |
Added psf/gui to libgui
...and some other things
Diffstat (limited to 'libc/inc/assert.h')
-rw-r--r-- | libc/inc/assert.h | 11 |
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 |