src/hotspot/share/gc/g1/g1MemoryPool.cpp
changeset 51332 c25572739e7c
parent 48196 5ee29f4ec472
child 51498 9a5200b84046
equal deleted inserted replaced
51331:7939b3c4e408 51332:c25572739e7c
    30 G1MemoryPoolSuper::G1MemoryPoolSuper(G1CollectedHeap* g1h,
    30 G1MemoryPoolSuper::G1MemoryPoolSuper(G1CollectedHeap* g1h,
    31                                      const char* name,
    31                                      const char* name,
    32                                      size_t init_size,
    32                                      size_t init_size,
    33                                      size_t max_size,
    33                                      size_t max_size,
    34                                      bool support_usage_threshold) :
    34                                      bool support_usage_threshold) :
    35   _g1mm(g1h->g1mm()), CollectedMemoryPool(name,
    35   CollectedMemoryPool(name,
    36                                           init_size,
    36                       init_size,
    37                                           max_size,
    37                       max_size,
    38                                           support_usage_threshold) {
    38                       support_usage_threshold),
       
    39   _g1mm(g1h->g1mm()) {
    39   assert(UseG1GC, "sanity");
    40   assert(UseG1GC, "sanity");
    40 }
    41 }
    41 
    42 
    42 G1EdenPool::G1EdenPool(G1CollectedHeap* g1h) :
    43 G1EdenPool::G1EdenPool(G1CollectedHeap* g1h) :
    43   G1MemoryPoolSuper(g1h,
    44   G1MemoryPoolSuper(g1h,