summaryrefslogtreecommitdiff
path: root/src/GF/System/Signal.hs
diff options
context:
space:
mode:
authorbringert <bringert@cs.chalmers.se>2006-06-15 01:41:18 +0000
committerbringert <bringert@cs.chalmers.se>2006-06-15 01:41:18 +0000
commitafac97b82181e2db14226d854761e53c66d98094 (patch)
treea3c61f6b04359f4ce0289bd4ba0863467cc2ea66 /src/GF/System/Signal.hs
parent3efba2f5cc795bd4bbf65224d2c20ce92f6f4a5f (diff)
Block SIGINT while running gfInteract, as suggested by Peter.
Diffstat (limited to 'src/GF/System/Signal.hs')
-rw-r--r--src/GF/System/Signal.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/GF/System/Signal.hs b/src/GF/System/Signal.hs
index 3d9e6ef40..fe8a12483 100644
--- a/src/GF/System/Signal.hs
+++ b/src/GF/System/Signal.hs
@@ -14,14 +14,14 @@
-- Import the right singal handling module.
-----------------------------------------------------------------------------
-module GF.System.Signal (runInterruptibly) where
+module GF.System.Signal (runInterruptibly,blockInterrupt) where
#ifdef USE_INTERRUPT
-import GF.System.UseSignal (runInterruptibly)
+import GF.System.UseSignal (runInterruptibly,blockInterrupt)
#else
-import GF.System.NoSignal (runInterruptibly)
+import GF.System.NoSignal (runInterruptibly,blockInterrupt)
#endif