comparison src/share/vm/utilities/vmError.cpp @ 9088:89e4d67fdd2a

Merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 12 Apr 2013 14:05:42 +0200
parents b8f261ba79c6 7b835924c31c
children 836a62f43af9
comparison
equal deleted inserted replaced
9037:b008f40b67d0 9088:89e4d67fdd2a
683 } 683 }
684 684
685 STEP(190, "(printing heap information)" ) 685 STEP(190, "(printing heap information)" )
686 686
687 if (_verbose && Universe::is_fully_initialized()) { 687 if (_verbose && Universe::is_fully_initialized()) {
688 // Print heap information before vm abort. As we'd like as much 688 Universe::heap()->print_on_error(st);
689 // information as possible in the report we ask for the
690 // extended (i.e., more detailed) version.
691 Universe::print_on(st, true /* extended */);
692 st->cr();
693
694 Universe::heap()->barrier_set()->print_on(st);
695 st->cr(); 689 st->cr();
696 690
697 st->print_cr("Polling page: " INTPTR_FORMAT, os::get_polling_page()); 691 st->print_cr("Polling page: " INTPTR_FORMAT, os::get_polling_page());
698 st->cr(); 692 st->cr();
699 } 693 }