summaryrefslogtreecommitdiff
path: root/includes/RtsTypeable.h
blob: 28b59cdc13304d304926034483abee5729002b14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* -----------------------------------------------------------------------------
 *
 * (c) The GHC Team, 2006
 *
 *  Support for shared Typeable
 *
 * ---------------------------------------------------------------------------*/

#ifndef GHC_RTS_TYPEABLE_H
#define GHC_RTS_TYPEABLE_H

#include "Stg.h"

void initTypeableStore(void);
void exitTypeableStore(void);

StgPtr getOrSetTypeableStore(StgPtr);

#endif