7099849: G1: include heap region information in hs_err files

Reviewed-by: johnc, brutisso, poonam
This commit is contained in:
Antonios Printezis 2011-11-08 00:41:28 -05:00
parent 83958f54fb
commit 44b419af51
11 changed files with 59 additions and 38 deletions

View file

@ -680,8 +680,10 @@ void VMError::report(outputStream* st) {
STEP(190, "(printing heap information)" )
if (_verbose && Universe::is_fully_initialized()) {
// print heap information before vm abort
Universe::print_on(st);
// Print heap information before vm abort. As we'd like as much
// information as possible in the report we ask for the
// extended (i.e., more detailed) version.
Universe::print_on(st, true /* extended */);
st->cr();
}