[project @ 2003-12-15 17:59:05 by panne]
authorpanne <unknown>
Mon, 15 Dec 2003 17:59:05 +0000 (17:59 +0000)
committerpanne <unknown>
Mon, 15 Dec 2003 17:59:05 +0000 (17:59 +0000)
Fixed #ifdefs for Cygwin

System/Posix/Signals.hsc

index f8bcb1a..41858e5 100644 (file)
@@ -75,7 +75,10 @@ module System.Posix.Signals (
   scheduleAlarm,
 
   -- * Waiting for signals
-  getPendingSignals, awaitSignal,
+  getPendingSignals,
+#ifndef cygwin32_TARGET_OS
+  awaitSignal,
+#endif
 
 #ifdef __GLASGOW_HASKELL__
   -- * The @NOCLDSTOP@ flag
@@ -190,10 +193,8 @@ busError = sigBUS
 processStatusChanged :: Signal
 processStatusChanged = sigCHLD
 
-#ifndef cygwin32_TARGET_OS
 continueProcess :: Signal
 continueProcess = sigCONT
-#endif
 
 floatingPointException :: Signal
 floatingPointException = sigFPE