From 6d7e43c479b4dd0e851a325982b4675be2aa4cbf Mon Sep 17 00:00:00 2001 From: simonpj Date: Fri, 21 Feb 2003 13:24:06 +0000 Subject: [PATCH] [project @ 2003-02-21 13:24:06 by simonpj] More tidy up --- ghc/compiler/utils/Panic.lhs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ghc/compiler/utils/Panic.lhs b/ghc/compiler/utils/Panic.lhs index b47ff7f..f07f7f1 100644 --- a/ghc/compiler/utils/Panic.lhs +++ b/ghc/compiler/utils/Panic.lhs @@ -27,12 +27,12 @@ module Panic import Config import FastTypes -#ifndef mingw32_HOST_OS +#ifndef mingw32_TARGET_OS # if __GLASGOW_HASKELL__ > 504 import System.Posix.Signals # else import Posix ( Handler(Catch), installHandler, sigINT, sigQUIT ) -# endif +# endif /* GHC > 504 */ import CONCURRENT ( myThreadId ) @@ -40,8 +40,8 @@ import CONCURRENT ( myThreadId ) import EXCEPTION ( raiseInThread ) # else import EXCEPTION ( throwTo ) -# endif -#endif +# endif /* GHC < 500 */ +#endif /* mingw32_TARGET_OS */ import DYNAMIC import qualified EXCEPTION as Exception @@ -185,7 +185,7 @@ thread. \begin{code} installSignalHandlers :: IO () installSignalHandlers = do -#ifndef mingw32_HOST_OS +#ifndef mingw32_TARGET_OS main_thread <- myThreadId let sig_handler = Catch (throwTo main_thread (Exception.DynException (toDyn Interrupted))) -- 1.7.10.4