17 lines
548 B
C
17 lines
548 B
C
/* -----------------------------------------------------------------------------
|
|
*
|
|
* (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:
|
|
* https://gitlab.haskell.org/ghc/ghc/wikis/commentary/source-tree/includes
|
|
*
|
|
* ---------------------------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
/* Alternate to raise(3) for threaded rts, for BSD-based OSes */
|
|
int genericRaise(int sig);
|