From: simonpj Date: Fri, 21 Feb 2003 13:24:06 +0000 (+0000) Subject: [project @ 2003-02-21 13:24:06 by simonpj] X-Git-Tag: Approx_11550_changesets_converted~1113 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6d7e43c479b4dd0e851a325982b4675be2aa4cbf;p=ghc-hetmet.git [project @ 2003-02-21 13:24:06 by simonpj] More tidy up --- 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)))