It is not possible to catch SIGKILL, don't bother trying.
authorChris Lattner <sabre@nondot.org>
Wed, 4 Aug 2004 18:14:24 +0000 (18:14 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 4 Aug 2004 18:14:24 +0000 (18:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15496 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Signals.cpp

index b5a81396b13125264244bf3abe7baf5ced73c203..b81de279ab60d3131818a55237535d46db752fa3 100644 (file)
@@ -31,7 +31,7 @@ static std::vector<std::string> FilesToRemove;
 
 // IntSigs - Signals that may interrupt the program at any time.
 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]);