[project @ 2003-03-21 15:45:56 by sof]
[ghc-hetmet.git] / ghc / includes / Signals.h
1 /* -----------------------------------------------------------------------------
2  * $Id: Signals.h,v 1.2 2002/12/05 14:20:55 stolz Exp $
3  *
4  * (c) The GHC Team, 1998-2002
5  *
6  * RTS signal handling 
7  *
8  * ---------------------------------------------------------------------------*/
9
10 #ifndef SIGNALS_H
11 #define SIGNALS_H
12
13 #define STG_SIG_DFL  (-1)
14 #define STG_SIG_IGN  (-2)
15 #define STG_SIG_ERR  (-3)
16 #define STG_SIG_HAN  (-4)
17 #define STG_SIG_RST  (-5)
18
19 extern int stg_sig_install (int, int, StgStablePtr *, void *);
20
21 #endif // SIGNALS_H
22