diff src/share/vm/utilities/vmError.cpp @ 4073:53074c2c4600

7099849: G1: include heap region information in hs_err files Reviewed-by: johnc, brutisso, poonam
author tonyp
date Tue, 08 Nov 2011 00:41:28 -0500
parents f08d439fab8c
children d7e3846464d0
line wrap: on
line diff
--- a/src/share/vm/utilities/vmError.cpp	Mon Nov 07 22:11:12 2011 -0500
+++ b/src/share/vm/utilities/vmError.cpp	Tue Nov 08 00:41:28 2011 -0500
@@ -680,8 +680,10 @@
   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();
      }