blob: 15b10130a8a08a01c462039dab79a818eb363834 (
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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 1995-2009
*
* The RTS stores some "global" values on behalf of libraries, so that
* some libraries can ensure that certain top-level things are shared
* even when multiple versions of the library are loaded. e.g. see
* Data.Typeable and GHC.Conc.
*
* ---------------------------------------------------------------------------*/
#include "PosixSource.h"
#include "Rts.h"
#include "Globals.h"
#include "Stable.h"
static StgStablePtr typeableStore = 0;
static StgStablePtr signalHandlerStore = 0;
#ifdef THREADED_RTS
Mutex globalStoreLock;
#endif
void
initGlobalStore(void)
{
typeableStore = 0;
signalHandlerStore = 0;
#ifdef THREADED_RTS
initMutex(&globalStoreLock);
#endif
}
void
exitGlobalStore(void)
{
#ifdef THREADED_RTS
closeMutex(&globalStoreLock);
#endif
if(typeableStore!=0) {
freeStablePtr((StgStablePtr)typeableStore);
typeableStore=0;
}
if(signalHandlerStore!=0) {
freeStablePtr((StgStablePtr)signalHandlerStore);
signalHandlerStore=0;
}
}
StgStablePtr
getOrSetTypeableStore(StgStablePtr ptr)
{
StgStablePtr ret = typeableStore;
if(ret==0) {
#ifdef THREADED_RTS
ACQUIRE_LOCK(&globalStoreLock);
ret=typeableStore;
if(ret==0) {
#endif
typeableStore = ret = ptr;
#ifdef THREADED_RTS
}
RELEASE_LOCK(&globalStoreLock);
#endif
}
return ret;
}
StgStablePtr
getOrSetSignalHandlerStore(StgStablePtr ptr)
{
StgStablePtr ret = signalHandlerStore;
if(ret==0) {
#ifdef THREADED_RTS
ACQUIRE_LOCK(&globalStoreLock);
ret=signalHandlerStore;
if(ret==0) {
#endif
signalHandlerStore = ret = ptr;
#ifdef THREADED_RTS
}
RELEASE_LOCK(&globalStoreLock);
#endif
}
return ret;
}
|