blob: a5907bbee95942bd9f56fd7dc42b48b54d8ed166 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 1998-2005
*
* RTS signal handling
*
* ---------------------------------------------------------------------------*/
#ifndef SIGNALS_H
#define SIGNALS_H
#define STG_SIG_DFL (-1)
#define STG_SIG_IGN (-2)
#define STG_SIG_ERR (-3)
#define STG_SIG_HAN (-4)
#define STG_SIG_RST (-5)
#endif /* SIGNALS_H */
|