Kill parent on OS X.

This commit is contained in:
Steve Checkoway
2004-04-05 08:06:49 +00:00
parent 161e6da184
commit a8626a2df4
@@ -345,6 +345,9 @@ static void child_process()
#if defined(DARWIN) #if defined(DARWIN)
InformUserOfCrash( sCrashInfoPath ); InformUserOfCrash( sCrashInfoPath );
/* Forcibly kill our parent. */
kill( getppid(), SIGKILL );
#else #else
fprintf(stderr, fprintf(stderr,
"\n" "\n"
@@ -358,9 +361,6 @@ static void child_process()
"\n" "\n"
); );
#endif #endif
/* Forcibly kill our parent. */
// kill( getppid(), SIGKILL );
} }