src/share/vm/gc_implementation/g1/concurrentG1RefineThread.cpp

changeset 1454
035d2e036a9b
parent 1371
e1fdf4fd34dc
child 1546
44f61c24ddab
equal deleted inserted replaced
1453:8afee153274a 1454:035d2e036a9b
202 } 202 }
203 } 203 }
204 if (G1TraceConcurrentRefinement) gclog_or_tty->print_cr("G1-Refine-stop"); 204 if (G1TraceConcurrentRefinement) gclog_or_tty->print_cr("G1-Refine-stop");
205 } 205 }
206 206
207 void ConcurrentG1RefineThread::print() { 207 void ConcurrentG1RefineThread::print() const {
208 gclog_or_tty->print("\"Concurrent G1 Refinement Thread\" "); 208 print_on(tty);
209 Thread::print(); 209 }
210 gclog_or_tty->cr(); 210
211 } 211 void ConcurrentG1RefineThread::print_on(outputStream* st) const {
212 st->print("\"G1 Concurrent Refinement Thread#%d\" ", _worker_id);
213 Thread::print_on(st);
214 st->cr();
215 }

mercurial