0570c82bccfcd53c179679e63cb7829990b58191
[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/core/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 -- ---------------------------------------------------------------------------
29 -- exitWith
30
31 -- `exitWith code' terminates the program, returning `code' to the
32 -- program's caller.  Before it terminates, any open or semi-closed
33 -- handles are first closed.
34
35 exitWith :: ExitCode -> IO a
36 exitWith ExitSuccess = throw (ExitException ExitSuccess)
37 exitWith code@(ExitFailure n) 
38   | n == 0 = ioException (IOError Nothing InvalidArgument "exitWith" "ExitFailure 0" Nothing)
39   | otherwise = throw (ExitException code)
40
41 exitFailure :: IO a
42 exitFailure = exitWith (ExitFailure 1)