X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FProfiling.h;h=e27ad4c5edd9738c952aebf9c6f1bf6fb51d611c;hb=7d9eb2e45b4a9ff4cb053b1ec37602be88528b62;hp=8961da9b177beb908f4f28398a2d80150f7753e3;hpb=cbeb99efd4a117de5b028341dc41bc8f50717383;p=ghc-hetmet.git diff --git a/rts/Profiling.h b/rts/Profiling.h index 8961da9..e27ad4c 100644 --- a/rts/Profiling.h +++ b/rts/Profiling.h @@ -11,28 +11,32 @@ #include +#include "BeginPrivate.h" + void initProfiling1 (void); -void freeProfiling1 (void); void initProfiling2 (void); void endProfiling (void); +void freeProfiling (void); extern FILE *prof_file; extern FILE *hp_file; #ifdef PROFILING -void gen_XML_logfile ( void ); +void gen_XML_logfile ( void ); void reportCCSProfiling ( void ); void PrintNewStackDecls ( void ); -extern void fprintCCS( FILE *f, CostCentreStack *ccs ); -extern void fprintCCS_stderr( CostCentreStack *ccs ); +void fprintCCS( FILE *f, CostCentreStack *ccs ); +void fprintCCS_stderr( CostCentreStack *ccs ); #ifdef DEBUG -extern void debugCCS( CostCentreStack *ccs ); +void debugCCS( CostCentreStack *ccs ); #endif #endif +#include "EndPrivate.h" + #endif /* PROFILING_H */