diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-04 18:14:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-04 18:14:24 +0000 |
commit | 0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031 (patch) | |
tree | 1e2a4fa915a5da96a3a10d3ff7cd6c0bafb3d29d /lib/Support | |
parent | 6173cd9c163de5288aa8c3a241f21515f60c8b20 (diff) | |
download | external_llvm-0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031.zip external_llvm-0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031.tar.gz external_llvm-0a4f85e9fd6cde49cda7ba6c3a1d638b502b2031.tar.bz2 |
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')
-rw-r--r-- | lib/Support/Signals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Signals.cpp b/lib/Support/Signals.cpp index b5a8139..b81de27 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]); |