X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=rts%2FStats.h;h=0c5178723cc2001a6b3f9f12e23435b5a491d77a;hp=bd39ced57df624115a5ec2c21a5fb2388efafc85;hb=HEAD;hpb=1663532f26ae2e68f04d067b11bd177d307637b1 diff --git a/rts/Stats.h b/rts/Stats.h index bd39ced..0c51787 100644 --- a/rts/Stats.h +++ b/rts/Stats.h @@ -11,13 +11,20 @@ #include "GetTime.h" +#include "BeginPrivate.h" + +struct gc_thread_; + void stat_startInit(void); void stat_endInit(void); -void stat_startGC(void); -void stat_endGC (lnat alloc, lnat live, - lnat copied, lnat gen, - lnat max_copied, lnat avg_copied, lnat slop); +void stat_startGC(struct gc_thread_ *gct); +void stat_endGC (struct gc_thread_ *gct, lnat alloc, lnat live, + lnat copied, nat gen, + lnat max_copied, lnat avg_copied, lnat slop); + +void stat_gcWorkerThreadStart (struct gc_thread_ *gct); +void stat_gcWorkerThreadDone (struct gc_thread_ *gct); #ifdef PROFILING void stat_startRP(void); @@ -51,7 +58,6 @@ double mut_user_time_during_heap_census(void); #endif /* PROFILING */ void statDescribeGens( void ); -HsInt64 getAllocations( void ); Ticks stat_getElapsedGCTime(void); Ticks stat_getElapsedTime(void); @@ -60,5 +66,6 @@ Ticks stat_getElapsedTime(void); void statsPrintf( char *s, ... ) GNUC3_ATTRIBUTE(format (printf, 1, 2)); +#include "EndPrivate.h" #endif /* STATS_H */