replace sparc-specific Int64 code with calls to platform-independent macros
[ghc-hetmet.git] / includes / rts / Signals.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2009
4  *
5  * RTS signal handling 
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #ifndef RTS_SIGNALS_H
10 #define RTS_SIGNALS_H
11
12 /* NB. #included in Haskell code, no prototypes in here. */
13
14 /* arguments to stg_sig_install() */
15 #define STG_SIG_DFL   (-1)
16 #define STG_SIG_IGN   (-2)
17 #define STG_SIG_ERR   (-3)
18 #define STG_SIG_HAN   (-4)
19 #define STG_SIG_RST   (-5)
20
21 #endif /* RTS_SIGNALS_H */