OpenJDK / jdk / jdk
changeset 10665:f9e21413c65a
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
author | tonyp |
---|---|
date | Wed, 21 Sep 2011 01:27:20 -0400 |
parents | 702062c83bd7 |
children | 1fd33ec0e5f7 |
files | hotspot/src/share/vm/services/g1MemoryPool.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 */) { }