X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FPapi.c;h=4d54c726826db91b699c267fbf2a2077985a3ece;hb=b46472feb93d93e6a8af1758b2a313a2fb9893fe;hp=e62fc9595c6a7c967a4f00520f1dd215de5b9a82;hpb=a2a67cd520b9841114d69a87a423dabcb3b4368e;p=ghc-hetmet.git diff --git a/rts/Papi.c b/rts/Papi.c index e62fc95..4d54c72 100644 --- a/rts/Papi.c +++ b/rts/Papi.c @@ -180,10 +180,10 @@ init_countable_events(void) static void -papi_report_event(const char *name, ullong value) +papi_report_event(const char *name, StgWord64 value) { static char temp[BIG_STRING_LEN]; - ullong_format_string(value,temp,rtsTrue/*commas*/); + showStgWord64(value,temp,rtsTrue/*commas*/); statsPrintf(" %15s %15s\n", name, temp); }