diff options
author | Ian Lynagh <igloo@earth.li> | 2010-04-21 16:23:36 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-04-21 16:23:36 +0000 |
commit | 81c95f7d9854521a568179bb19199299835b7a53 (patch) | |
tree | 148e2833ad3112356c87f0b9286032484d587181 /rts/RtsUtils.h | |
parent | 7dbc1d8f8fb650162e01f6eab8dabaf1f53c819d (diff) | |
download | haskell-81c95f7d9854521a568179bb19199299835b7a53.tar.gz |
Use StgWord64 instead of ullong
This patch also fixes ullong_format_string (renamed to showStgWord64)
so that it works with values outside the 32bit range (trac #3979), and
simplifies the without-commas case.
Diffstat (limited to 'rts/RtsUtils.h')
-rw-r--r-- | rts/RtsUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsUtils.h b/rts/RtsUtils.h index e47dbb9110..909e243b7a 100644 --- a/rts/RtsUtils.h +++ b/rts/RtsUtils.h @@ -35,7 +35,7 @@ void stgFree(void* p); void heapOverflow(void); char *time_str(void); -char *ullong_format_string(ullong, char *, rtsBool); +char *showStgWord64(StgWord64, char *, rtsBool); #ifdef DEBUG void heapCheckFail( void ); |