< prev index next > src/hotspot/share/gc/shenandoah/shenandoahOldGeneration.cpp
Print this page
bool is_completed() {
return !Atomic::load(&_is_preempted);
}
};
- ShenandoahOldGeneration::ShenandoahOldGeneration(uint max_queues, size_t max_capacity, size_t soft_max_capacity)
- : ShenandoahGeneration(OLD, max_queues, max_capacity, soft_max_capacity),
+ ShenandoahOldGeneration::ShenandoahOldGeneration(uint max_queues, size_t max_capacity)
+ : ShenandoahGeneration(OLD, max_queues, max_capacity),
_coalesce_and_fill_region_array(NEW_C_HEAP_ARRAY(ShenandoahHeapRegion*, ShenandoahHeap::heap()->num_regions(), mtGC)),
_old_heuristics(nullptr),
_region_balance(0),
_promoted_reserve(0),
_promoted_expended(0),
< prev index next >