Hugs only: fix imports
[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     , exitSuccess   -- :: IO a
21   ) where
22
23 import Prelude
24
25 #ifdef __GLASGOW_HASKELL__
26 import GHC.Exception
27 import GHC.IOBase
28 #endif
29
30 #ifdef __HUGS__
31 import Hugs.Prelude (ExitCode(..))
32 import Control.Exception.Base
33 #endif
34
35 #ifdef __NHC__
36 import System
37   ( ExitCode(..)
38   , exitWith
39   )
40 #endif
41
42 -- ---------------------------------------------------------------------------
43 -- exitWith
44
45 -- | Computation 'exitWith' @code@ throws 'ExitException' @code@.
46 -- Normally this terminates the program, returning @code@ to the
47 -- program's caller.  Before the program terminates, any open or
48 -- semi-closed handles are first closed.
49 --
50 -- A program that fails in any other way is treated as if it had
51 -- called 'exitFailure'.
52 -- A program that terminates successfully without calling 'exitWith'
53 -- explicitly is treated as it it had called 'exitWith' 'ExitSuccess'.
54 --
55 -- As an 'ExitException' is not an 'IOError', 'exitWith' bypasses
56 -- the error handling in the 'IO' monad and cannot be intercepted by
57 -- 'catch' from the "Prelude".  However it is an 'Exception', and can
58 -- be caught using the functions of "Control.Exception".  This means
59 -- that cleanup computations added with 'Control.Exception.bracket'
60 -- (from "Control.Exception") are also executed properly on 'exitWith'.
61
62 #ifndef __NHC__
63 exitWith :: ExitCode -> IO a
64 exitWith ExitSuccess = throwIO ExitSuccess
65 exitWith code@(ExitFailure n)
66   | n /= 0 = throwIO code
67 #ifdef __GLASGOW_HASKELL__
68   | otherwise = ioError (IOError Nothing InvalidArgument "exitWith" "ExitFailure 0" Nothing)
69 #endif
70 #endif  /* ! __NHC__ */
71
72 -- | The computation 'exitFailure' is equivalent to
73 -- 'exitWith' @(@'ExitFailure' /exitfail/@)@,
74 -- where /exitfail/ is implementation-dependent.
75 exitFailure :: IO a
76 exitFailure = exitWith (ExitFailure 1)
77
78 -- | The computation 'exitSuccess' is equivalent to
79 -- 'exitWith' 'ExitSuccess', It terminates the program
80 -- sucessfully.
81 exitSuccess :: IO a
82 exitSuccess = exitWith ExitSuccess