no helpable actionmap for RdsActions
[enigma2.git] / lib / base / eerror.cpp
index 39c786233117cc19490db5e598ae67fd07c5cc8e..8766f5ec48b5dba927305dcc7c4eb6457bc4bdf7 100644 (file)
@@ -74,6 +74,8 @@ int logOutputConsole=1;
 static pthread_mutex_t DebugLock =
        PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP;
 
+extern void bsodFatal();
+
 void eFatal(const char* fmt, ...)
 {
        char buf[1024];
@@ -84,7 +86,7 @@ void eFatal(const char* fmt, ...)
        singleLock s(DebugLock);
        logOutput(lvlFatal, buf);
        fprintf(stderr, "FATAL: %s\n",buf );
-       _exit(0);
+       bsodFatal();
 }
 
 #ifdef DEBUG