[llvm-commits] CVS: llvm/lib/Support/Signals.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Aug 4 11:14:36 PDT 2004
Changes in directory llvm/lib/Support:
Signals.cpp updated: 1.18 -> 1.19
---
Log message:
It is not possible to catch SIGKILL, don't bother trying.
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/Support/Signals.cpp
diff -u llvm/lib/Support/Signals.cpp:1.18 llvm/lib/Support/Signals.cpp:1.19
--- llvm/lib/Support/Signals.cpp:1.18 Thu May 27 00:31:24 2004
+++ llvm/lib/Support/Signals.cpp Wed Aug 4 13:14:24 2004
@@ -31,7 +31,7 @@
// 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]);
More information about the llvm-commits
mailing list