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
--- a/hotspot/src/share/vm/services/g1MemoryPool.cpp Tue Sep 20 15:39:17 2011 -0700
+++ b/hotspot/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 */) { }