# HG changeset patch # User tonyp # Date 1316582840 14400 # Node ID 114e52976463fd67a4575d4bd78eee347e204fd4 # Parent 663cb89032b13bd2dbed202f42ccb19476435039 7045232: G1: pool names are inconsistent with other collectors (don't have 'Space') Summary: Make sure the eden and survivor pools have "Space" in their name. Reviewed-by: jmasa, ysr diff -r 663cb89032b1 -r 114e52976463 src/share/vm/services/g1MemoryPool.cpp --- a/src/share/vm/services/g1MemoryPool.cpp Tue Sep 20 15:39:17 2011 -0700 +++ b/src/share/vm/services/g1MemoryPool.cpp Wed Sep 21 01:27:20 2011 -0400 @@ -73,7 +73,7 @@ G1EdenPool::G1EdenPool(G1CollectedHeap* g1h) : G1MemoryPoolSuper(g1h, - "G1 Eden", + "G1 Eden Space", eden_space_committed(g1h), /* init_size */ false /* support_usage_threshold */) { } @@ -88,7 +88,7 @@ G1SurvivorPool::G1SurvivorPool(G1CollectedHeap* g1h) : G1MemoryPoolSuper(g1h, - "G1 Survivor", + "G1 Survivor Space", survivor_space_committed(g1h), /* init_size */ false /* support_usage_threshold */) { }