[llvm-commits] CVS: llvm/include/llvm/System/Signals.h
Jeff Cohen
jeffc at jolt-lang.org
Mon Aug 1 20:04:59 PDT 2005
Changes in directory llvm/include/llvm/System:
Signals.h updated: 1.15 -> 1.16
---
Log message:
Implement SetInterruptFunction for Windows.
---
Diffs of the changes: (+2 -1)
Signals.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/include/llvm/System/Signals.h
diff -u llvm/include/llvm/System/Signals.h:1.15 llvm/include/llvm/System/Signals.h:1.16
--- llvm/include/llvm/System/Signals.h:1.15 Mon Aug 1 21:13:42 2005
+++ llvm/include/llvm/System/Signals.h Mon Aug 1 22:04:47 2005
@@ -42,7 +42,8 @@
/// being killed, and the interrupt function automatically disabled. Note
/// that interrupt functions are not allowed to call any non-reentrant
/// functions. An null interrupt function pointer disables the current
- /// installed function.
+ /// installed function. Note also that the handler may be executed on a
+ /// different thread on some platforms.
/// @brief Register a function to be called when ctrl-c is pressed.
void SetInterruptFunction(void (*IF)());
} // End sys namespace
More information about the llvm-commits
mailing list