< prev index next >

src/hotspot/share/gc/z/zPageAllocator.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 84,94 **** ZPage* const ZPageAllocator::gc_marker = (ZPage*)-1; ZPageAllocator::ZPageAllocator(size_t min_capacity, size_t max_capacity, size_t max_reserve) : _lock(), _virtual(), ! _physical(max_capacity, ZPageSizeMin), _cache(), _max_reserve(max_reserve), _pre_mapped(_virtual, _physical, try_ensure_unused_for_pre_mapped(min_capacity)), _used_high(0), _used_low(0), --- 84,94 ---- ZPage* const ZPageAllocator::gc_marker = (ZPage*)-1; ZPageAllocator::ZPageAllocator(size_t min_capacity, size_t max_capacity, size_t max_reserve) : _lock(), _virtual(), ! _physical(max_capacity), _cache(), _max_reserve(max_reserve), _pre_mapped(_virtual, _physical, try_ensure_unused_for_pre_mapped(min_capacity)), _used_high(0), _used_low(0),
< prev index next >