src/share/vm/utilities/debug.cpp

changeset 791
1ee8caae33af
parent 777
37f87013dfd8
parent 670
9c2ecc2ffb12
child 867
275a3b7ff0d6
equal deleted inserted replaced
790:0edda524b58c 791:1ee8caae33af
1 /* 1 /*
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
206 206
207 if (first_time_here) { 207 if (first_time_here) {
208 Thread* thread = ThreadLocalStorage::get_thread_slow(); 208 Thread* thread = ThreadLocalStorage::get_thread_slow();
209 VMError(thread, size, message, file_name, line_no).report_and_die(); 209 VMError(thread, size, message, file_name, line_no).report_and_die();
210 } 210 }
211 vm_abort(); 211
212 // Dump core and abort
213 vm_abort(true);
212 } 214 }
213 215
214 void report_vm_out_of_memory_vararg(const char* file_name, int line_no, size_t size, const char* format, ...) { 216 void report_vm_out_of_memory_vararg(const char* file_name, int line_no, size_t size, const char* format, ...) {
215 char buffer[256]; 217 char buffer[256];
216 va_list ap; 218 va_list ap;

mercurial