diff options
Diffstat (limited to 'rts/Globals.c')
-rw-r--r-- | rts/Globals.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rts/Globals.c b/rts/Globals.c index 06b2f9721f..1aafe21879 100644 --- a/rts/Globals.c +++ b/rts/Globals.c @@ -25,6 +25,8 @@ typedef enum { GHCConcWindowsProddingStore, SystemEventThreadEventManagerStore, SystemEventThreadIOManagerThreadStore, + SystemTimerThreadEventManagerStore, + SystemTimerThreadIOManagerThreadStore, MaxStoreKey } StoreKey; @@ -114,3 +116,15 @@ getOrSetSystemEventThreadIOManagerThreadStore(StgStablePtr ptr) { return getOrSetKey(SystemEventThreadIOManagerThreadStore,ptr); } + +StgStablePtr +getOrSetSystemTimerThreadEventManagerStore(StgStablePtr ptr) +{ + return getOrSetKey(SystemTimerThreadEventManagerStore,ptr); +} + +StgStablePtr +getOrSetSystemTimerThreadIOManagerThreadStore(StgStablePtr ptr) +{ + return getOrSetKey(SystemTimerThreadIOManagerThreadStore,ptr); +} |