diff -r de141433919f -r 9c2ecc2ffb12 src/share/vm/utilities/debug.cpp --- 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, ...) {