mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8081607: Change default GC for server configurations to G1
For more info see JEP 248. Reviewed-by: pliden, tschatzl
This commit is contained in:
parent
83a0dd66c5
commit
f6a2109bab
2 changed files with 12 additions and 9 deletions
|
@ -1535,7 +1535,11 @@ void Arguments::select_gc_ergonomically() {
|
|||
if (should_auto_select_low_pause_collector()) {
|
||||
FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
|
||||
} else {
|
||||
#if defined(JAVASE_EMBEDDED)
|
||||
FLAG_SET_ERGO(bool, UseParallelGC, true);
|
||||
#else
|
||||
FLAG_SET_ERGO(bool, UseG1GC, true);
|
||||
#endif
|
||||
}
|
||||
} else {
|
||||
FLAG_SET_ERGO(bool, UseSerialGC, true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue