diff options
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]); |