[llvm-commits] CVS: llvm/lib/System/Win32/Signals.inc
Chris Lattner
lattner at cs.uiuc.edu
Mon Aug 1 19:14:34 PDT 2005
Changes in directory llvm/lib/System/Win32:
Signals.inc updated: 1.16 -> 1.17
---
Log message:
Implement sys::SetInterruptFunction on Unix, stub it on win32 so that the
build will not fail
---
Diffs of the changes: (+4 -0)
Signals.inc | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/lib/System/Win32/Signals.inc
diff -u llvm/lib/System/Win32/Signals.inc:1.16 llvm/lib/System/Win32/Signals.inc:1.17
--- llvm/lib/System/Win32/Signals.inc:1.16 Thu Jul 7 23:50:08 2005
+++ llvm/lib/System/Win32/Signals.inc Mon Aug 1 21:14:22 2005
@@ -109,6 +109,10 @@
LeaveCriticalSection(&CriticalSection);
}
+
+void sys::SetInterruptFunction(void (*IF)()) {
+ // Currently unimplemented.
+}
}
static void Cleanup() {
More information about the llvm-commits
mailing list