From: panne Date: Mon, 15 Dec 2003 17:59:05 +0000 (+0000) Subject: [project @ 2003-12-15 17:59:05 by panne] X-Git-Tag: nhc98-1-18-release~431 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d75a6902d196b1085626980a0f6aa8b3b027921f;p=haskell-directory.git [project @ 2003-12-15 17:59:05 by panne] Fixed #ifdefs for Cygwin --- diff --git a/System/Posix/Signals.hsc b/System/Posix/Signals.hsc index f8bcb1a..41858e5 100644 --- a/System/Posix/Signals.hsc +++ b/System/Posix/Signals.hsc @@ -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