[project @ 2002-09-06 14:34:13 by simonmar]
[ghc-hetmet.git] / ghc / includes / Signals.h
1 /* -----------------------------------------------------------------------------
2  * $Id: Signals.h,v 1.1 2002/09/06 14:34:14 simonmar 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
18 extern int stg_sig_install (int, int, StgStablePtr *, void *);
19
20 #endif // SIGNALS_H
21