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

changeset 1454
035d2e036a9b
parent 1325
6cb8e9df7174
child 1546
44f61c24ddab
     1.1 --- a/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp	Mon Oct 05 05:51:22 2009 -0700
     1.2 +++ b/src/share/vm/gc_implementation/g1/concurrentG1Refine.cpp	Fri Oct 02 16:12:07 2009 -0400
     1.3 @@ -377,3 +377,11 @@
     1.4    _g1h->g1_policy()->record_cc_clear_time(elapsed * 1000.0);
     1.5  #endif
     1.6  }
     1.7 +
     1.8 +void ConcurrentG1Refine::print_worker_threads_on(outputStream* st) const {
     1.9 +  for (int i = 0; i < _n_threads; ++i) {
    1.10 +    _threads[i]->print_on(st);
    1.11 +    st->cr();
    1.12 +  }
    1.13 +}
    1.14 +

mercurial