summaryrefslogtreecommitdiff
path: root/src/compiler/GF/System/Signal.hs
blob: fe8a12483d829dadf9fa991d0bacf7e73cd87e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{-# OPTIONS -cpp #-}

----------------------------------------------------------------------
-- |
-- Module      : GF.System.Signal
-- Maintainer  : Bjorn Bringert
-- Stability   : (stability)
-- Portability : (portability)
--
-- > CVS $Date: 2005/11/11 11:12:50 $ 
-- > CVS $Author: bringert $
-- > CVS $Revision: 1.3 $
--
-- Import the right singal handling module.
-----------------------------------------------------------------------------

module GF.System.Signal (runInterruptibly,blockInterrupt) where

#ifdef USE_INTERRUPT

import GF.System.UseSignal (runInterruptibly,blockInterrupt)

#else

import GF.System.NoSignal (runInterruptibly,blockInterrupt)

#endif