diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/Threads.h | 2 | ||||
-rw-r--r-- | includes/stg/MiscClosures.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/includes/rts/Threads.h b/includes/rts/Threads.h index f72f5ed121..fceacdc75d 100644 --- a/includes/rts/Threads.h +++ b/includes/rts/Threads.h @@ -43,6 +43,8 @@ StgRegTable * resumeThread (void *); // int cmp_thread (StgPtr tso1, StgPtr tso2); int rts_getThreadId (StgPtr tso); +HsInt64 rts_getThreadAllocationCounter (StgPtr tso); +void rts_setThreadAllocationCounter (StgPtr tso, HsInt64 i); void rts_enableThreadAllocationLimit (StgPtr tso); void rts_disableThreadAllocationLimit (StgPtr tso); diff --git a/includes/stg/MiscClosures.h b/includes/stg/MiscClosures.h index 1fbfab9fbe..76cfbd6c8c 100644 --- a/includes/stg/MiscClosures.h +++ b/includes/stg/MiscClosures.h @@ -468,9 +468,6 @@ RTS_FUN_DECL(stg_traceCcszh); RTS_FUN_DECL(stg_clearCCSzh); RTS_FUN_DECL(stg_traceEventzh); RTS_FUN_DECL(stg_traceMarkerzh); -RTS_FUN_DECL(stg_getThreadAllocationCounterzh); -RTS_FUN_DECL(stg_setThreadAllocationCounterzh); - /* Other misc stuff */ // See wiki:Commentary/Compiler/Backends/PprC#Prototypes |