1 /* -----------------------------------------------------------------------------
4 * (c) The GHC Team 2002-2006
6 * Table of thread labels.
8 * ---------------------------------------------------------------------------*/
10 #ifndef THREADLABELS_H
11 #define THREADLABELS_H
13 #include "BeginPrivate.h"
16 void initThreadLabelTable (void);
17 void freeThreadLabelTable (void);
18 void * lookupThreadLabel (StgWord key);
19 void removeThreadLabel (StgWord key);
20 void labelThread (StgPtr tso, char *label);
23 #include "EndPrivate.h"
25 #endif /* THREADLABELS_H */