[project @ 2003-06-22 09:24:23 by ross]
[ghc-base.git] / System / Exit.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  System.Exit
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/base/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  provisional
9 -- Portability :  portable
10 --
11 -- Exiting the program.
12 --
13 -----------------------------------------------------------------------------
14
15 module System.Exit
16     ( 
17       ExitCode(ExitSuccess,ExitFailure)
18     , exitWith      -- :: ExitCode -> IO a
19     , exitFailure   -- :: IO a
20   ) where
21
22 import Prelude
23
24 #ifdef __GLASGOW_HASKELL__
25 import GHC.IOBase
26 #endif
27
28 #ifdef __HUGS__
29 import Hugs.Prelude
30 import Hugs.Exception
31 #endif
32
33 #ifdef __NHC__
34 import System
35   ( ExitCode(..)
36   , exitWith
37   )
38 #endif
39
40 -- ---------------------------------------------------------------------------
41 -- exitWith
42
43 -- `exitWith code' terminates the program, returning `code' to the
44 -- program's caller.  Before it terminates, any open or semi-closed
45 -- handles are first closed.
46
47 #ifndef __NHC__
48 exitWith :: ExitCode -> IO a
49 exitWith ExitSuccess = throwIO (ExitException ExitSuccess)
50 exitWith code@(ExitFailure n)
51   | n /= 0 = throwIO (ExitException code)
52 #ifdef __GLASGOW_HASKELL__
53   | otherwise = ioError (IOError Nothing InvalidArgument "exitWith" "ExitFailure 0" Nothing)
54 #endif
55 #endif  /* ! __NHC__ */
56
57 exitFailure :: IO a
58 exitFailure = exitWith (ExitFailure 1)