comparison src/share/vm/gc_implementation/g1/concurrentG1RefineThread.cpp @ 628:7bb995fbd3c0

Merge
author trims
date Thu, 12 Mar 2009 18:16:36 -0700
parents 4f360ec815ba
children 20c6f43950b5
comparison
equal deleted inserted replaced
580:ce2272390558 628:7bb995fbd3c0
131 131
132 sample_young_list_rs_lengths(); 132 sample_young_list_rs_lengths();
133 _co_tracker.update(false); 133 _co_tracker.update(false);
134 134
135 if (G1SmoothConcRefine) { 135 if (G1SmoothConcRefine) {
136 start_vtime_sec = os::elapsedVTime();
137 prev_buffer_num = curr_buffer_num; 136 prev_buffer_num = curr_buffer_num;
138
139 _sts.leave(); 137 _sts.leave();
140 os::sleep(Thread::current(), (jlong) _interval_ms, false); 138 os::sleep(Thread::current(), (jlong) _interval_ms, false);
141 _sts.join(); 139 _sts.join();
140 start_vtime_sec = os::elapsedVTime();
142 } 141 }
143
144 n_logs++; 142 n_logs++;
145 } 143 }
146 // Make sure we harvest the PYA, if any. 144 // Make sure we harvest the PYA, if any.
147 (void)_cg1r->get_pya(); 145 (void)_cg1r->get_pya();
148 } 146 }