X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FStats.h;h=f3a20ae6a24d08b6e0c2c68a3d49e9f795220571;hb=93f9244e523e264f3aea45fc154bac73c5ab1bf2;hp=12311ee100caf5c113bf90779c7ba757c5727126;hpb=a75a8790410ce3ffb439bfd0b7c3999e7df72eb1;p=ghc-hetmet.git diff --git a/rts/Stats.h b/rts/Stats.h index 12311ee..f3a20ae 100644 --- a/rts/Stats.h +++ b/rts/Stats.h @@ -11,13 +11,15 @@ #include "GetTime.h" +#include "BeginPrivate.h" + 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 max_copied, lnat avg_copied, lnat slop); #ifdef PROFILING void stat_startRP(void); @@ -39,7 +41,8 @@ void stat_endExit(void); void stat_exit(int alloc); void stat_workerStop(void); -void initStats(void); +void initStats0(void); +void initStats1(void); double mut_user_time_during_GC(void); double mut_user_time(void); @@ -50,7 +53,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); @@ -59,5 +61,6 @@ Ticks stat_getElapsedTime(void); void statsPrintf( char *s, ... ) GNUC3_ATTRIBUTE(format (printf, 1, 2)); +#include "EndPrivate.h" #endif /* STATS_H */