comparison src/share/vm/memory/genCollectedHeap.cpp @ 9076:7b835924c31c

8011872: Include Bit Map addresses in the hs_err files Reviewed-by: brutisso, jmasa
author stefank
date Wed, 10 Apr 2013 14:26:49 +0200
parents 68fe50d4f1d5
children a08c80e9e1e5
comparison
equal deleted inserted replaced
9075:ba42fd5e00e6 9076: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) {