summaryrefslogtreecommitdiff
path: root/lib/Support/Signals.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-04 18:14:24 +0000
committerChris Lattner <sabre@nondot.org>2004-08-04 18:14:24 +0000
commit0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031 (patch)
tree1e2a4fa915a5da96a3a10d3ff7cd6c0bafb3d29d /lib/Support/Signals.cpp
parent6173cd9c163de5288aa8c3a241f21515f60c8b20 (diff)
downloadllvm-0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031.tar.gz
llvm-0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031.tar.bz2
llvm-0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031.tar.xz
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
Diffstat (limited to 'lib/Support/Signals.cpp')
-rw-r--r--lib/Support/Signals.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Signals.cpp b/lib/Support/Signals.cpp
index b5a81396b1..b81de279ab 100644
--- a/lib/Support/Signals.cpp
+++ b/lib/Support/Signals.cpp
@@ -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]);