diff src/share/vm/utilities/debug.cpp @ 235:9c2ecc2ffb12 jdk7-b31

Merge
author trims
date Fri, 11 Jul 2008 01:14:44 -0700
parents d1605aabd0a1 8d852b81e775
children 1ee8caae33af
line wrap: on
line diff
--- a/src/share/vm/utilities/debug.cpp	Thu Jul 03 11:01:32 2008 -0700
+++ b/src/share/vm/utilities/debug.cpp	Fri Jul 11 01:14:44 2008 -0700
@@ -208,7 +208,9 @@
     Thread* thread = ThreadLocalStorage::get_thread_slow();
     VMError(thread, size, message, file_name, line_no).report_and_die();
   }
-  vm_abort();
+
+  // Dump core and abort
+  vm_abort(true);
 }
 
 void report_vm_out_of_memory_vararg(const char* file_name, int line_no, size_t size, const char* format, ...) {