[project @ 2005-04-24 20:19:30 by panne]
authorpanne <unknown>
Sun, 24 Apr 2005 20:19:30 +0000 (20:19 +0000)
committerpanne <unknown>
Sun, 24 Apr 2005 20:19:30 +0000 (20:19 +0000)
Warning police (unused parameter)

ghc/rts/Signals.c

index bd8c3aa..425d90a 100644 (file)
@@ -353,6 +353,8 @@ startSignalHandler(int sig)  // called by the IO manager, see GHC.Conc
        createIOThread(RtsFlags.GcFlags.initialStkSize, 
                       (StgClosure *)deRefStablePtr((StgStablePtr)handlers[sig]))
        );
+#else
+    (void)sig;   /* keep gcc -Wall happy */
 #endif
 }