X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FPapi.c;fp=rts%2FPapi.c;h=4d54c726826db91b699c267fbf2a2077985a3ece;hb=81c95f7d9854521a568179bb19199299835b7a53;hp=e62fc9595c6a7c967a4f00520f1dd215de5b9a82;hpb=7dbc1d8f8fb650162e01f6eab8dabaf1f53c819d;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); }