blob: 343c514acee672612951a87834d9b1c1f6418fb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 2006
*
* Support for shared Typeable
*
* ---------------------------------------------------------------------------*/
#ifndef GHC_RTS_TYPEABLE_H
#define GHC_RTS_TYPEABLE_H
void initTypeableStore(void);
void exitTypeableStore(void);
StgPtr getOrSetTypeableStore(StgPtr);
#endif
|