Tidy up file headers and copyrights; point to the wiki for docs
[ghc-hetmet.git] / includes / rts / Globals.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 2006-2009
4  *
5  * The RTS stores some "global" values on behalf of libraries, so that
6  * some libraries can ensure that certain top-level things are shared
7  * even when multiple versions of the library are loaded.  e.g. see
8  * Data.Typeable and GHC.Conc.
9  *
10  * Do not #include this file directly: #include "Rts.h" instead.
11  *
12  * To understand the structure of the RTS headers, see the wiki:
13  *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
14  *
15  * ---------------------------------------------------------------------------*/
16
17 #ifndef RTS_GLOBALS_H
18 #define RTS_GLOBALS_H
19
20 StgStablePtr getOrSetTypeableStore(StgStablePtr value);
21 StgStablePtr getOrSetSignalHandlerStore(StgStablePtr value);
22
23 #endif /* RTS_GLOBALS_H */