comparison src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp @ 9088:89e4d67fdd2a

Merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 12 Apr 2013 14:05:42 +0200
parents b9a918201d47 7b835924c31c
children 836a62f43af9
comparison
equal deleted inserted replaced
9037:b008f40b67d0 9088:89e4d67fdd2a
3435 "NTAMS=next top-at-mark-start)"); 3435 "NTAMS=next top-at-mark-start)");
3436 PrintRegionClosure blk(st); 3436 PrintRegionClosure blk(st);
3437 heap_region_iterate(&blk); 3437 heap_region_iterate(&blk);
3438 } 3438 }
3439 3439
3440 void G1CollectedHeap::print_on_error(outputStream* st) const {
3441 this->CollectedHeap::print_on_error(st);
3442
3443 if (_cm != NULL) {
3444 st->cr();
3445 _cm->print_on_error(st);
3446 }
3447 }
3448
3440 void G1CollectedHeap::print_gc_threads_on(outputStream* st) const { 3449 void G1CollectedHeap::print_gc_threads_on(outputStream* st) const {
3441 if (G1CollectedHeap::use_parallel_gc_threads()) { 3450 if (G1CollectedHeap::use_parallel_gc_threads()) {
3442 workers()->print_worker_threads_on(st); 3451 workers()->print_worker_threads_on(st);
3443 } 3452 }
3444 _cmThread->print_on(st); 3453 _cmThread->print_on(st);