diff options
author | Esa Ilari Vuokko <ei@vuokko.info> | 2006-08-23 00:30:41 +0000 |
---|---|---|
committer | Esa Ilari Vuokko <ei@vuokko.info> | 2006-08-23 00:30:41 +0000 |
commit | 52589e05f86d593bc3e6ea3f1a0b8f6ceae94fe6 (patch) | |
tree | 478412900cabc3f4a23551eec2a705cde5badfac /includes | |
parent | 22afade657206fa4ac86ebb6ecc8f2352cca3c4f (diff) | |
download | haskell-52589e05f86d593bc3e6ea3f1a0b8f6ceae94fe6.tar.gz |
Add shared Typeable support
Diffstat (limited to 'includes')
-rw-r--r-- | includes/RtsTypeable.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/includes/RtsTypeable.h b/includes/RtsTypeable.h new file mode 100644 index 0000000000..28b59cdc13 --- /dev/null +++ b/includes/RtsTypeable.h @@ -0,0 +1,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
|