< prev index next >

src/share/vm/gc/g1/concurrentG1Refine.cpp

Print this page
rev 12906 : [mq]: gc_interface

*** 21,30 **** --- 21,31 ---- * questions. * */ #include "precompiled.hpp" + #include "gc/g1/g1BarrierSet.hpp" #include "gc/g1/concurrentG1Refine.hpp" #include "gc/g1/concurrentG1RefineThread.hpp" #include "gc/g1/g1YoungRemSetSamplingThread.hpp" #include "logging/log.hpp" #include "runtime/java.hpp"
*** 341,351 **** } void ConcurrentG1Refine::adjust(double update_rs_time, size_t update_rs_processed_buffers, double goal_ms) { ! DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set(); if (G1UseAdaptiveConcRefinement) { update_zones(update_rs_time, update_rs_processed_buffers, goal_ms); update_thread_thresholds(); --- 342,352 ---- } void ConcurrentG1Refine::adjust(double update_rs_time, size_t update_rs_processed_buffers, double goal_ms) { ! DirtyCardQueueSet& dcqs = G1BarrierSet::dirty_card_queue_set(); if (G1UseAdaptiveConcRefinement) { update_zones(update_rs_time, update_rs_processed_buffers, goal_ms); update_thread_thresholds();
< prev index next >