kill(getpid), not kill(0) (maybe this is why X was sometimes killed on

crash, too)
This commit is contained in:
Glenn Maynard
2004-04-09 20:57:58 +00:00
parent ab7e7b1afa
commit 061e5affb6
@@ -55,7 +55,7 @@ static void EmergencyShutdown( int signal, siginfo_t *si, const ucontext_t *uc )
if( !strcmp(RageThread::GetCurThreadName(), "Main thread") && SDL_WasInit(SDL_INIT_VIDEO) )
SDL_QuitSubSystem(SDL_INIT_VIDEO);
kill( 0, SIGKILL );
kill( getpid(), SIGKILL );
}
ArchHooks_Unix::ArchHooks_Unix()