< prev index next >

src/share/vm/gc/cms/concurrentMarkSweepGeneration.cpp

Print this page

        

*** 3597,3607 **** } size_t used = get_eden_used(); size_t capacity = get_eden_capacity(); // Don't start sampling unless we will get sufficiently // many samples. ! if (used < (capacity/(CMSScheduleRemarkSamplingRatio * 100) * CMSScheduleRemarkEdenPenetration)) { _start_sampling = true; } else { _start_sampling = false; } --- 3597,3607 ---- } size_t used = get_eden_used(); size_t capacity = get_eden_capacity(); // Don't start sampling unless we will get sufficiently // many samples. ! if (used < (capacity / CMSScheduleRemarkSamplingRatio / 100 * CMSScheduleRemarkEdenPenetration)) { _start_sampling = true; } else { _start_sampling = false; }
< prev index next >