From ba32e7abba9a16f0297c4f13995a8a365567160c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 24 Jan 2007 11:40:41 +0000 Subject: [PATCH] just return; SignalHandler will do this --- stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp b/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp index 451d93da26..7656e01322 100644 --- a/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp +++ b/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp @@ -67,10 +67,8 @@ static bool EmergencyShutdown( int signal, siginfo_t *si, const ucontext_t *uc ) kill( getpid(), SIGKILL ); #else /* We didn't run the crash handler. Run the default handler, so we can dump core. */ - SignalHandler::ResetSignalHandlers(); - raise( signal ); -#endif return false; +#endif } #if defined(HAVE_TLS)