7045232: G1: pool names are inconsistent with other collectors (don't have 'Space')

Wed, 21 Sep 2011 01:27:20 -0400

author
tonyp
date
Wed, 21 Sep 2011 01:27:20 -0400
changeset 3170
114e52976463
parent 3169
663cb89032b1
child 3171
1847b501ae74

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 file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/services/g1MemoryPool.cpp	Tue Sep 20 15:39:17 2011 -0700
     1.2 +++ b/src/share/vm/services/g1MemoryPool.cpp	Wed Sep 21 01:27:20 2011 -0400
     1.3 @@ -73,7 +73,7 @@
     1.4  
     1.5  G1EdenPool::G1EdenPool(G1CollectedHeap* g1h) :
     1.6    G1MemoryPoolSuper(g1h,
     1.7 -                    "G1 Eden",
     1.8 +                    "G1 Eden Space",
     1.9                      eden_space_committed(g1h), /* init_size */
    1.10                      false /* support_usage_threshold */) { }
    1.11  
    1.12 @@ -88,7 +88,7 @@
    1.13  
    1.14  G1SurvivorPool::G1SurvivorPool(G1CollectedHeap* g1h) :
    1.15    G1MemoryPoolSuper(g1h,
    1.16 -                    "G1 Survivor",
    1.17 +                    "G1 Survivor Space",
    1.18                      survivor_space_committed(g1h), /* init_size */
    1.19                      false /* support_usage_threshold */) { }
    1.20  

mercurial