comparison src/share/vm/gc_implementation/g1/g1CollectedHeap.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 24ef5fb05e0f
children 89e4d67fdd2a c0000f77bc6d
comparison
equal deleted inserted replaced
9075:ba42fd5e00e6 9076:7b835924c31c
3425 "NTAMS=next top-at-mark-start)"); 3425 "NTAMS=next top-at-mark-start)");
3426 PrintRegionClosure blk(st); 3426 PrintRegionClosure blk(st);
3427 heap_region_iterate(&blk); 3427 heap_region_iterate(&blk);
3428 } 3428 }
3429 3429
3430 void G1CollectedHeap::print_on_error(outputStream* st) const {
3431 this->CollectedHeap::print_on_error(st);
3432
3433 if (_cm != NULL) {
3434 st->cr();
3435 _cm->print_on_error(st);
3436 }
3437 }
3438
3430 void G1CollectedHeap::print_gc_threads_on(outputStream* st) const { 3439 void G1CollectedHeap::print_gc_threads_on(outputStream* st) const {
3431 if (G1CollectedHeap::use_parallel_gc_threads()) { 3440 if (G1CollectedHeap::use_parallel_gc_threads()) {
3432 workers()->print_worker_threads_on(st); 3441 workers()->print_worker_threads_on(st);
3433 } 3442 }
3434 _cmThread->print_on(st); 3443 _cmThread->print_on(st);