src/share/vm/gc_implementation/g1/heapRegionSet.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hs-gc9 Cdiff src/share/vm/gc_implementation/g1/heapRegionSet.cpp

src/share/vm/gc_implementation/g1/heapRegionSet.cpp

Print this page

        

*** 89,101 **** out->print_cr(" length : %14u", length()); out->print_cr(" total capacity : "SIZE_FORMAT_W(14)" bytes", total_capacity_bytes()); } ! HeapRegionSetBase::HeapRegionSetBase(const char* name, bool humongous, bool empty, bool linked, HRSMtSafeChecker* mt_safety_checker) : _name(name), _verify_in_progress(false), ! _is_humongous(humongous), _is_empty(empty), _is_linked(linked), _mt_safety_checker(mt_safety_checker), _count() { } //////////////////// HeapRegionSet //////////////////// --- 89,101 ---- out->print_cr(" length : %14u", length()); out->print_cr(" total capacity : "SIZE_FORMAT_W(14)" bytes", total_capacity_bytes()); } ! HeapRegionSetBase::HeapRegionSetBase(const char* name, bool humongous, bool empty, HRSMtSafeChecker* mt_safety_checker) : _name(name), _verify_in_progress(false), ! _is_humongous(humongous), _is_empty(empty), _mt_safety_checker(mt_safety_checker), _count() { } //////////////////// HeapRegionSet ////////////////////
src/share/vm/gc_implementation/g1/heapRegionSet.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File