From: sof Date: Tue, 2 Mar 1999 20:01:55 +0000 (+0000) Subject: [project @ 1999-03-02 20:01:55 by sof] X-Git-Tag: Approximately_9120_patches~6447 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=7c05940680c18465a7a1073e33dc2b88006dbff9;p=ghc-hetmet.git [project @ 1999-03-02 20:01:55 by sof] No signal support with mingw32 --- diff --git a/ghc/rts/Signals.c b/ghc/rts/Signals.c index 6d9ea44..219ce67 100644 --- a/ghc/rts/Signals.c +++ b/ghc/rts/Signals.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Signals.c,v 1.4 1999/02/05 16:02:54 simonm Exp $ + * $Id: Signals.c,v 1.5 1999/03/02 20:01:55 sof Exp $ * * (c) The GHC Team, 1998-1999 * @@ -14,6 +14,8 @@ #include "RtsFlags.h" #include "StablePriv.h" +#ifndef mingw32_TARGET_OS + #ifndef PAR static StgInt *handlers = NULL; /* Dynamically grown array of signal handlers */ @@ -237,3 +239,5 @@ start_signal_handlers(void) { } #endif + +#endif /*! mingw32_TARGET_OS */