8268537: (Temporary) Disable ParallelRefProcEnabled for Parallel GC

Reviewed-by: stefank, sjohanss
This commit is contained in:
Leo Korinth 2021-06-10 13:19:43 +00:00
parent f716711c7b
commit 7cd5a6e7b5
2 changed files with 2 additions and 2 deletions
src/hotspot/share/gc/parallel
test/hotspot/jtreg/gc/arguments

@ -87,7 +87,7 @@ void ParallelArguments::initialize() {
}
if (FLAG_IS_DEFAULT(ParallelRefProcEnabled) && ParallelGCThreads > 1) {
FLAG_SET_DEFAULT(ParallelRefProcEnabled, true);
//FLAG_SET_DEFAULT(ParallelRefProcEnabled, true);
}
}

@ -51,7 +51,7 @@ public class TestParallelRefProc {
}
if (GC.Parallel.isSupported()) {
noneGCSupported = false;
testFlag(new String[] { "-XX:+UseParallelGC" }, true);
testFlag(new String[] { "-XX:+UseParallelGC" }, false);
}
if (GC.G1.isSupported()) {
noneGCSupported = false;