src/share/vm/memory/genCollectedHeap.cpp

changeset 4904
7b835924c31c
parent 4899
68fe50d4f1d5
child 5011
a08c80e9e1e5
equal deleted inserted replaced
4903:ba42fd5e00e6 4904:7b835924c31c
1131 ConcurrentMarkSweepThread::print_all_on(st); 1131 ConcurrentMarkSweepThread::print_all_on(st);
1132 } 1132 }
1133 #endif // INCLUDE_ALL_GCS 1133 #endif // INCLUDE_ALL_GCS
1134 } 1134 }
1135 1135
1136 void GenCollectedHeap::print_on_error(outputStream* st) const {
1137 this->CollectedHeap::print_on_error(st);
1138
1139 #if INCLUDE_ALL_GCS
1140 if (UseConcMarkSweepGC) {
1141 st->cr();
1142 CMSCollector::print_on_error(st);
1143 }
1144 #endif // INCLUDE_ALL_GCS
1145 }
1146
1136 void GenCollectedHeap::print_tracing_info() const { 1147 void GenCollectedHeap::print_tracing_info() const {
1137 if (TraceGen0Time) { 1148 if (TraceGen0Time) {
1138 get_gen(0)->print_summary_info(); 1149 get_gen(0)->print_summary_info();
1139 } 1150 }
1140 if (TraceGen1Time) { 1151 if (TraceGen1Time) {

mercurial