Allow fatal errors to produce core dumps. (#79)

This commit is contained in:
Robert Nishihara
2016-12-02 15:10:37 -08:00
committed by Philipp Moritz
parent dadbcae17d
commit de2dd1f506
+1 -1
View File
@@ -63,7 +63,7 @@
void *buffer[255]; \
const int calls = backtrace(buffer, sizeof(buffer) / sizeof(void *)); \
backtrace_symbols_fd(buffer, calls, 1); \
exit(-1); \
abort(); \
} while (0)
#else
#define LOG_FATAL(M, ...) \