It is not possible to catch SIGKILL, don't bother trying.

llvm-svn: 15496
This commit is contained in:
Chris Lattner 2004-08-04 18:14:24 +00:00
parent 1ce22d3d43
commit 0100ef2e24

View File

@ -31,7 +31,7 @@ static std::vector<std::string> FilesToRemove;
// IntSigs - Signals that may interrupt the program at any time. // IntSigs - Signals that may interrupt the program at any time.
static const int IntSigs[] = { static const int IntSigs[] = {
SIGHUP, SIGINT, SIGQUIT, SIGKILL, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
}; };
static const int *IntSigsEnd = IntSigs + sizeof(IntSigs)/sizeof(IntSigs[0]); static const int *IntSigsEnd = IntSigs + sizeof(IntSigs)/sizeof(IntSigs[0]);