X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FProfiling.h;h=87d81e2f9b5f9bc6e532617eace735dbfe7d9a9d;hb=95ec750f94236c2ae127a147d7c9bebec036bcab;hp=8961da9b177beb908f4f28398a2d80150f7753e3;hpb=cbeb99efd4a117de5b028341dc41bc8f50717383;p=ghc-hetmet.git diff --git a/rts/Profiling.h b/rts/Profiling.h index 8961da9..87d81e2 100644 --- a/rts/Profiling.h +++ b/rts/Profiling.h @@ -11,6 +11,8 @@ #include +#pragma GCC visibility push(hidden) + void initProfiling1 (void); void freeProfiling1 (void); void initProfiling2 (void); @@ -21,18 +23,20 @@ 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 +#pragma GCC visibility pop + #endif /* PROFILING_H */