8065972: Remove support for ParNew+SerialOld and DefNew+CMS

Reviewed-by: mgerdin, stefank
This commit is contained in:
Bengt Rutisson 2014-11-27 21:02:13 +01:00
parent 02adde2aac
commit 0ecc753586
24 changed files with 109 additions and 327 deletions

View file

@ -68,9 +68,7 @@ SharedHeap::SharedHeap(CollectorPolicy* policy_) :
vm_exit_during_initialization("Failed necessary allocation.");
}
_sh = this; // ch is static, should be set only once.
if (UseParNewGC ||
UseG1GC ||
(UseConcMarkSweepGC && (CMSParallelInitialMarkEnabled || CMSParallelRemarkEnabled) && use_parallel_gc_threads())) {
if (UseConcMarkSweepGC || UseG1GC) {
_workers = new FlexibleWorkGang("Parallel GC Threads", ParallelGCThreads,
/* are_GC_task_threads */true,
/* are_ConcurrentGC_threads */false);