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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* -----------------------------------------------------------------------------
* ThreadLabels.c
*
* (c) The GHC Team 2002-2003
*
* Table of thread labels.
*
* ---------------------------------------------------------------------------*/
#include "PosixSource.h"
#include "Rts.h"
#include "ThreadLabels.h"
#include "RtsUtils.h"
#include "Hash.h"
#include <stdlib.h>
#include <string.h>
#if defined(DEBUG)
/* to the end */
static HashTable * threadLabels = NULL;
void
initThreadLabelTable(void)
{
if (threadLabels == NULL) {
threadLabels = allocHashTable();
}
}
void
updateThreadLabel(StgWord key, void *data)
{
removeThreadLabel(key);
insertHashTable(threadLabels,key,data);
}
void *
lookupThreadLabel(StgWord key)
{
return lookupHashTable(threadLabels,key);
}
void
removeThreadLabel(StgWord key)
{
void * old = NULL;
if ((old = lookupHashTable(threadLabels,key))) {
removeHashTable(threadLabels,key,old);
stgFree(old);
}
}
void
labelThread(StgPtr tso, char *label)
{
int len;
void *buf;
/* Caveat: Once set, you can only set the thread name to "" */
len = strlen(label)+1;
buf = stgMallocBytes(len * sizeof(char), "Schedule.c:labelThread()");
strncpy(buf,label,len);
/* Update will free the old memory for us */
updateThreadLabel(((StgTSO *)tso)->id,buf);
}
#endif /* DEBUG */
|