summaryrefslogtreecommitdiff
path: root/includes/RtsTypeable.h
diff options
context:
space:
mode:
authorEsa Ilari Vuokko <ei@vuokko.info>2006-08-23 00:30:41 +0000
committerEsa Ilari Vuokko <ei@vuokko.info>2006-08-23 00:30:41 +0000
commit52589e05f86d593bc3e6ea3f1a0b8f6ceae94fe6 (patch)
tree478412900cabc3f4a23551eec2a705cde5badfac /includes/RtsTypeable.h
parent22afade657206fa4ac86ebb6ecc8f2352cca3c4f (diff)
downloadhaskell-52589e05f86d593bc3e6ea3f1a0b8f6ceae94fe6.tar.gz
Add shared Typeable support
Diffstat (limited to 'includes/RtsTypeable.h')
-rw-r--r--includes/RtsTypeable.h19
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