From 0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 4 Aug 2004 18:14:24 +0000 Subject: [PATCH] It is not possible to catch SIGKILL, don't bother trying. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15496 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Signals.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/Signals.cpp b/lib/Support/Signals.cpp index b5a81396b13..b81de279ab6 100644 --- a/lib/Support/Signals.cpp +++ b/lib/Support/Signals.cpp @@ -31,7 +31,7 @@ static std::vector 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]); -- 2.34.1