blob: 550e2869e32932cb4a087a7de371a30e68f1b548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* -----------------------------------------------------------------------------
* ThreadLabels.h
*
* (c) The GHC Team 2002-2006
*
* Table of thread labels.
*
* ---------------------------------------------------------------------------*/
#ifndef THREADLABELS_H
#define THREADLABELS_H
#pragma GCC visibility push(hidden)
#if defined(DEBUG)
void initThreadLabelTable (void);
void freeThreadLabelTable (void);
void updateThreadLabel (StgWord key, void *data);
void * lookupThreadLabel (StgWord key);
void removeThreadLabel (StgWord key);
void labelThread (StgPtr tso, char *label);
#endif
#pragma GCC visibility pop
#endif /* THREADLABELS_H */
|