From 466a271917826a481c2f6aafed34b055404480f6 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 28 Mar 2004 06:06:10 +0000 Subject: [PATCH] reenable HaltAllThreads --- stepmania/src/archutils/Unix/CrashHandler.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stepmania/src/archutils/Unix/CrashHandler.cpp b/stepmania/src/archutils/Unix/CrashHandler.cpp index 784f5cb9b7..8a9b049b27 100644 --- a/stepmania/src/archutils/Unix/CrashHandler.cpp +++ b/stepmania/src/archutils/Unix/CrashHandler.cpp @@ -334,9 +334,8 @@ static void RunCrashHandler( const CrashData *crash ) } received = getpid(); - /* We want to stop other threads when crashing. However, sending SIGSTOPs is messy and - * tends to do more harm than good. Let's just try to get the crashdump written quickly. */ - // RageThread::HaltAllThreads(); + /* Stop other threads. */ + RageThread::HaltAllThreads(); /* We need to be very careful, since we're under crash conditions. Let's fork * a process and exec ourself to get a clean environment to work in. */