blob: a4a57ab3320356b1dddc76a10293c3995670d7dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 1998-2009
*
* RTS external APIs. This file declares everything that the GHC RTS
* exposes externally.
*
* To understand the structure of the RTS headers, see the wiki:
* http://ghc.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
*
* ---------------------------------------------------------------------------*/
#ifndef RTS_UTILS_H
#define RTS_UTILS_H
/* Alternate to raise(3) for threaded rts, for BSD-based OSes */
int genericRaise(int sig);
#endif /* RTS_UTILS_H */
|