X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/dc4073de1957503fcd2a7eed055c55a2265d1212..d924772eeced2429c007e51ce6dcb50dadec2836:/lib/base/eerror.cpp diff --git a/lib/base/eerror.cpp b/lib/base/eerror.cpp index 2182df49..4c4d6551 100644 --- a/lib/base/eerror.cpp +++ b/lib/base/eerror.cpp @@ -20,14 +20,16 @@ void DumpUnfreed() if(!allocList) return; + FILE *f = fopen("/var/tmp/enigma2_mem.out", "w"); size_t len = 1024; char *buffer = (char*)malloc(1024); for(i = allocList->begin(); i != allocList->end(); i++) { unsigned int tmp; - printf("%s\tLINE %d\tADDRESS %p\t%d unfreed\ttype %d (btcount %d)\n", + fprintf(f, "%s\tLINE %d\tADDRESS %p\t%d unfreed\ttype %d (btcount %d)\n", i->second.file, i->second.line, (void*)i->second.address, i->second.size, i->second.type, i->second.btcount); totalSize += i->second.size; + char **bt_string = backtrace_symbols( i->second.backtrace, i->second.btcount ); for ( tmp=0; tmp < i->second.btcount; tmp++ ) { @@ -47,33 +49,36 @@ void DumpUnfreed() int state; abi::__cxa_demangle(tmp1.c_str(), buffer, &len, &state); if (!state) - printf("%d %s%s\n", tmp, buffer,tmp2.c_str()); + fprintf(f, "%d %s%s\n", tmp, buffer,tmp2.c_str()); else - printf("%d %s\n", tmp, bt_string[tmp]); + fprintf(f, "%d %s\n", tmp, bt_string[tmp]); } } } else - printf("%d %s\n", tmp, bt_string[tmp]); + fprintf(f, "%d %s\n", tmp, bt_string[tmp]); } } free(bt_string); - printf("\n"); + if (i->second.btcount) + fprintf(f, "\n"); } free(buffer); - printf("-----------------------------------------------------------\n"); - printf("Total Unfreed: %d bytes\n", totalSize); - fflush(stdout); + fprintf(f, "-----------------------------------------------------------\n"); + fprintf(f, "Total Unfreed: %d bytes\n", totalSize); + fflush(f); }; #endif Signal2 logOutput; -int logOutputConsole=0; +int logOutputConsole=1; static pthread_mutex_t DebugLock = PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP; +extern void bsodFatal(const char *component); + void eFatal(const char* fmt, ...) { char buf[1024]; @@ -81,10 +86,12 @@ void eFatal(const char* fmt, ...) va_start(ap, fmt); vsnprintf(buf, 1024, fmt, ap); va_end(ap); - singleLock s(DebugLock); - logOutput(lvlFatal, buf); - fprintf(stderr, "FATAL: %s\n",buf ); - _exit(0); + { + singleLock s(DebugLock); + logOutput(lvlFatal, "FATAL: " + std::string(buf) + "\n"); + fprintf(stderr, "FATAL: %s\n",buf ); + } + bsodFatal("enigma2"); } #ifdef DEBUG @@ -126,15 +133,17 @@ void eWarning(const char* fmt, ...) if (logOutputConsole) fprintf(stderr, "%s\n", buf); } +#endif // DEBUG void ePythonOutput(const char *string) { +#ifdef DEBUG singleLock s(DebugLock); logOutput(lvlWarning, string); if (logOutputConsole) fwrite(string, 1, strlen(string), stderr); +#endif } -#endif // DEBUG void eWriteCrashdump() {