From 9ab02dd4d36bdb12c1e01ea9d4c4653624de54dc Mon Sep 17 00:00:00 2001 From: tonyp Date: Wed, 21 Sep 2011 01:27:20 -0400 Subject: [PATCH] 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 --- src/share/vm/services/g1MemoryPool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/share/vm/services/g1MemoryPool.cpp b/src/share/vm/services/g1MemoryPool.cpp index ce64f0e3d..a480c12b4 100644 --- a/src/share/vm/services/g1MemoryPool.cpp +++ b/src/share/vm/services/g1MemoryPool.cpp @@ -73,7 +73,7 @@ size_t G1MemoryPoolSuper::old_space_used(G1CollectedHeap* g1h) { 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 @@ MemoryUsage G1EdenPool::get_memory_usage() { G1SurvivorPool::G1SurvivorPool(G1CollectedHeap* g1h) : G1MemoryPoolSuper(g1h, - "G1 Survivor", + "G1 Survivor Space", survivor_space_committed(g1h), /* init_size */ false /* support_usage_threshold */) { } -- GitLab