[project @ 2003-02-21 13:24:06 by simonpj]
authorsimonpj <unknown>
Fri, 21 Feb 2003 13:24:06 +0000 (13:24 +0000)
committersimonpj <unknown>
Fri, 21 Feb 2003 13:24:06 +0000 (13:24 +0000)
More tidy up

ghc/compiler/utils/Panic.lhs

index b47ff7f..f07f7f1 100644 (file)
@@ -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)))