diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-08-19 14:15:18 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-08-19 14:15:18 +0000 |
commit | e9655493989157820d8a0a7b0f7c311c159ef956 (patch) | |
tree | ef3d10715ed97196264ed6b3c5f143ef20bcd425 /rts/Stats.c | |
parent | 68bc07fed38228a1f9fd1885333c7412f57c7e17 (diff) | |
download | haskell-e9655493989157820d8a0a7b0f7c311c159ef956.tar.gz |
rename whitehole_spin to evac_collision, and update it properly
Diffstat (limited to 'rts/Stats.c')
-rw-r--r-- | rts/Stats.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Stats.c b/rts/Stats.c index 6029745368..4acdddab59 100644 --- a/rts/Stats.c +++ b/rts/Stats.c @@ -15,7 +15,7 @@ #include "Profiling.h" #include "GetTime.h" #include "sm/Storage.h" -#include "sm/GC.h" // gc_alloc_block_sync, whitehole_spin +#include "sm/GC.h" // gc_alloc_block_sync, evac_collision #if USE_PAPI #include "Papi.h" @@ -704,7 +704,7 @@ stat_exit(int alloc) nat g, s; statsPrintf("gc_alloc_block_sync: %"FMT_Word64"\n", gc_alloc_block_sync.spin); - statsPrintf("whitehole_spin: %"FMT_Word64"\n", whitehole_spin); + statsPrintf("evac_collision: %"FMT_Word64"\n", evac_collision); for (g = 0; g < RtsFlags.GcFlags.generations; g++) { for (s = 0; s < generations[g].n_steps; s++) { statsPrintf("gen[%d].steps[%d].sync_large_objects: %"FMT_Word64"\n", g, s, generations[g].steps[s].sync_large_objects.spin); |