X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fbase%2Feerror.cpp;h=8766f5ec48b5dba927305dcc7c4eb6457bc4bdf7;hb=a50379ad64b3f0b79af40876ebde0e6deb15d245;hp=a84118793a91d377c9dfe7eeb6b390f261fb6edd;hpb=9bef763b47b5e5a273ce6eed4583004690571fcf;p=vuplus_dvbapp diff --git a/lib/base/eerror.cpp b/lib/base/eerror.cpp index a841187..8766f5e 100644 --- a/lib/base/eerror.cpp +++ b/lib/base/eerror.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -6,8 +7,6 @@ #include -// #include - #ifdef MEMLEAK_CHECK AllocList *allocList; pthread_mutex_t memLock = @@ -67,18 +66,16 @@ void DumpUnfreed() printf("Total Unfreed: %d bytes\n", totalSize); fflush(stdout); }; -#else - #include #endif -int infatal=0; - Signal2 logOutput; int logOutputConsole=1; -pthread_mutex_t signalLock = +static pthread_mutex_t DebugLock = PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP; +extern void bsodFatal(); + void eFatal(const char* fmt, ...) { char buf[1024]; @@ -86,19 +83,10 @@ void eFatal(const char* fmt, ...) va_start(ap, fmt); vsnprintf(buf, 1024, fmt, ap); va_end(ap); - singleLock s(signalLock); + singleLock s(DebugLock); logOutput(lvlFatal, buf); fprintf(stderr, "FATAL: %s\n",buf ); -#if 0 - if (!infatal) - { - infatal=1; - eMessageBox msg(buf, "FATAL ERROR", eMessageBox::iconError|eMessageBox::btOK); - msg.show(); - msg.exec(); - } -#endif - _exit(0); + bsodFatal(); } #ifdef DEBUG @@ -109,7 +97,7 @@ void eDebug(const char* fmt, ...) va_start(ap, fmt); vsnprintf(buf, 1024, fmt, ap); va_end(ap); - singleLock s(signalLock); + singleLock s(DebugLock); logOutput(lvlDebug, std::string(buf) + "\n"); if (logOutputConsole) fprintf(stderr, "%s\n", buf); @@ -122,7 +110,7 @@ void eDebugNoNewLine(const char* fmt, ...) va_start(ap, fmt); vsnprintf(buf, 1024, fmt, ap); va_end(ap); - singleLock s(signalLock); + singleLock s(DebugLock); logOutput(lvlDebug, buf); if (logOutputConsole) fprintf(stderr, "%s", buf); @@ -135,7 +123,7 @@ void eWarning(const char* fmt, ...) va_start(ap, fmt); vsnprintf(buf, 1024, fmt, ap); va_end(ap); - singleLock s(signalLock); + singleLock s(DebugLock); logOutput(lvlWarning, std::string(buf) + "\n"); if (logOutputConsole) fprintf(stderr, "%s\n", buf); @@ -144,9 +132,12 @@ void eWarning(const char* fmt, ...) void ePythonOutput(const char *string) { +#ifdef DEBUG + singleLock s(DebugLock); logOutput(lvlWarning, string); if (logOutputConsole) fwrite(string, 1, strlen(string), stderr); +#endif } void eWriteCrashdump()