Removed _log message from zone/CatchSignal on Linux as it can deadlock on shutdown if another signal is received while the _log call is being processed.

This commit is contained in:
Derision
2013-03-09 13:21:06 +00:00
parent c363261d00
commit 0e6272e6d8
2 changed files with 4 additions and 2 deletions
-2
View File
@@ -494,8 +494,6 @@ int main(int argc, char** argv) {
void CatchSignal(int sig_num) {
#ifdef _WINDOWS
_log(ZONE__INIT, "Recieved signal: %i", sig_num);
#else
_log(ZONE__INIT, "Recieved signal: %i in thread %d", sig_num, pthread_self());
#endif
RunLoops = false;
}