< prev index next >

src/hotspot/share/gc/parallel/psMemoryPool.cpp

Print this page
rev 59215 : imported patch max_gen_size

*** 1,7 **** /* ! * Copyright (c) 2007, 2017, 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) 2007, 2020, 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.
*** 49,59 **** EdenMutableSpacePool::EdenMutableSpacePool(PSYoungGen* young_gen, MutableSpace* space, const char* name, bool support_usage_threshold) : CollectedMemoryPool(name, space->capacity_in_bytes(), ! (young_gen->max_size() - young_gen->from_space()->capacity_in_bytes() - young_gen->to_space()->capacity_in_bytes()), support_usage_threshold), _young_gen(young_gen), _space(space) { } --- 49,61 ---- EdenMutableSpacePool::EdenMutableSpacePool(PSYoungGen* young_gen, MutableSpace* space, const char* name, bool support_usage_threshold) : CollectedMemoryPool(name, space->capacity_in_bytes(), ! (young_gen->max_gen_size() - ! young_gen->from_space()->capacity_in_bytes() - ! young_gen->to_space()->capacity_in_bytes()), support_usage_threshold), _young_gen(young_gen), _space(space) { }
< prev index next >