From 7c05940680c18465a7a1073e33dc2b88006dbff9 Mon Sep 17 00:00:00 2001 From: sof Date: Tue, 2 Mar 1999 20:01:55 +0000 Subject: [PATCH] [project @ 1999-03-02 20:01:55 by sof] No signal support with mingw32 --- ghc/rts/Signals.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 */ -- 1.7.10.4