mirror of
https://github.com/openjdk/jdk.git
synced 2026-07-19 23:48:50 +00:00
8345323: Parallel GC does not handle UseLargePages and UseNUMA gracefully
Reviewed-by: sjohanss, tschatzl
This commit is contained in:
parent
367c304127
commit
a9a5f7cb0a
@ -37,7 +37,11 @@ size_t MinNewSize = 0;
|
||||
size_t MinOldSize = 0;
|
||||
size_t MaxOldSize = 0;
|
||||
|
||||
size_t OldSize = 0;
|
||||
// If InitialHeapSize or MinHeapSize is not set on cmdline, this variable,
|
||||
// together with NewSize, is used to derive them.
|
||||
// Using the same value when it was a configurable flag to avoid breakage.
|
||||
// See more in JDK-8346005
|
||||
size_t OldSize = ScaleForWordSize(4*M);
|
||||
|
||||
size_t GenAlignment = 0;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user