[project @ 2003-08-29 16:00:25 by simonmar]
[ghc-hetmet.git] / ghc / rts / ThreadLabels.h
index 46e060c..97d3d0d 100644 (file)
@@ -1,8 +1,17 @@
+/* -----------------------------------------------------------------------------
+ * ThreadLabels.h
+ *
+ * (c) The GHC Team 2002-2003
+ *
+ * Table of thread labels.
+ *
+ * ---------------------------------------------------------------------------*/
+#ifndef __THREADLABELS_H__
+#define __THREADLABELS_H__
+
 #include "Rts.h"
 #include "Hash.h"
 
-extern HashTable * threadLabels;
-
 void
 initThreadLabelTable(void);
 
@@ -14,3 +23,5 @@ lookupThreadLabel(StgWord key);
 
 void
 removeThreadLabel(StgWord key);
+
+#endif /* __THREADLABELS_H__ */