blob: c7aecae396114c17f81663204c6a7076804c41e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 2006-2009
*
* The RTS stores some "global" values on behalf of libraries, so that
* some libraries can ensure that certain top-level things are shared
* even when multiple versions of the library are loaded. e.g. see
* Data.Typeable and GHC.Conc.
*
* ---------------------------------------------------------------------------*/
#pragma once
RTS_PRIVATE void initGlobalStore(void);
RTS_PRIVATE void exitGlobalStore(void);
|