aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarvin Borner2020-05-28 19:41:02 +0200
committerMarvin Borner2020-05-28 19:41:02 +0200
commitf676cc7bb821f498efe73f38bf19b43e4b91f575 (patch)
tree2e5e08780434c6f965a089f2a1407478c3d98173 /src
parentf784575fdbbee6e096866c0b506fd660dc5ffe1c (diff)
Added assertion to userspace
Diffstat (limited to 'src')
-rw-r--r--src/userspace/libc/assert.h8
-rw-r--r--src/userspace/libc/assert/assert.c8
2 files changed, 16 insertions, 0 deletions
diff --git a/src/userspace/libc/assert.h b/src/userspace/libc/assert.h
new file mode 100644
index 0000000..5ff70ab
--- /dev/null
+++ b/src/userspace/libc/assert.h
@@ -0,0 +1,8 @@
+#ifndef MELVIX_ASSERT_H
+#define MELVIX_ASSERT_H
+
+#define __FILENAME__ \
+ (__builtin_strrchr(__FILE__, '/') ? __builtin_strrchr(__FILE__, '/') + 1 : __FILE__)
+#define assert(exp) (exp) ? 0 : _assert(__FILENAME__, __LINE__, __func__, #exp)
+
+#endif \ No newline at end of file
diff --git a/src/userspace/libc/assert/assert.c b/src/userspace/libc/assert/assert.c
new file mode 100644
index 0000000..efd9083
--- /dev/null
+++ b/src/userspace/libc/assert/assert.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+void _assert(const char *file, int line, const char *func, const char *exp)
+{
+ printf("%s:%d: %s: Assertion '%s' failed", file, line, func, exp);
+ exit(1);
+} \ No newline at end of file