mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 02:24:40 +02:00
8208669: GC changes to allow enabling -Wreorder
Reviewed-by: kbarrett
This commit is contained in:
parent
a00eff193f
commit
d702d5f8d2
80 changed files with 371 additions and 294 deletions
|
@ -83,9 +83,12 @@ void HeapRegionSetBase::print_on(outputStream* out, bool print_contents) {
|
|||
}
|
||||
|
||||
HeapRegionSetBase::HeapRegionSetBase(const char* name, bool humongous, bool free, HRSMtSafeChecker* mt_safety_checker)
|
||||
: _name(name), _verify_in_progress(false),
|
||||
_is_humongous(humongous), _is_free(free), _mt_safety_checker(mt_safety_checker),
|
||||
_length(0)
|
||||
: _is_humongous(humongous),
|
||||
_is_free(free),
|
||||
_mt_safety_checker(mt_safety_checker),
|
||||
_length(0),
|
||||
_name(name),
|
||||
_verify_in_progress(false)
|
||||
{ }
|
||||
|
||||
void FreeRegionList::set_unrealistically_long_length(uint len) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue