summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-07-13 20:16:12 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-07-13 20:16:12 +0200
commitc61f1ce5b9268d3b107f03d03d66e830eaa98891 (patch)
tree9a8a44fea389537d4687507eddb97c18b71bf453 /src
parent7d356b1ddab0150b7347a5952e3bff2a04704fd4 (diff)
downloadabaos-c61f1ce5b9268d3b107f03d03d66e830eaa98891.tar.gz
abaos-c61f1ce5b9268d3b107f03d03d66e830eaa98891.tar.bz2
removed som kernel_panics in libc
Diffstat (limited to 'src')
-rw-r--r--src/libc/stdlib.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libc/stdlib.c b/src/libc/stdlib.c
index b4c2d84..07eabd4 100644
--- a/src/libc/stdlib.c
+++ b/src/libc/stdlib.c
@@ -67,7 +67,14 @@ void __attribute__( ( noreturn ) ) abort( void )
{
// TODO: this should be done on process level, terminating
// the process (by signalling SIGABRT for instance)
+#ifdef OS_ABAOS
kernel_panic( "aborted" );
+#endif
+#ifdef OS_LINUX
+ // TODO: this clearly wrong, but for now we exit with a 255 exit code
+ // on abort..
+ syscall1( __NR_exit, 255 );
+#endif
// make gcc happy ("error: ‘noreturn’ function does return")
for( ;; );