diff options
Diffstat (limited to 'rts/Globals.h')
-rw-r--r-- | rts/Globals.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/rts/Globals.h b/rts/Globals.h new file mode 100644 index 0000000000..bc68904f78 --- /dev/null +++ b/rts/Globals.h @@ -0,0 +1,19 @@ +/* ----------------------------------------------------------------------------- + * + * (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. + * + * ---------------------------------------------------------------------------*/ + +#ifndef GLOBALS_H +#define GLOBALS_H + +void initGlobalStore(void); +void exitGlobalStore(void); + +#endif + |