src/share/vm/utilities/debug.cpp

changeset 791
1ee8caae33af
parent 777
37f87013dfd8
parent 670
9c2ecc2ffb12
child 867
275a3b7ff0d6
     1.1 --- a/src/share/vm/utilities/debug.cpp	Wed Aug 06 11:57:31 2008 -0400
     1.2 +++ b/src/share/vm/utilities/debug.cpp	Thu Aug 21 23:36:31 2008 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * Copyright 1997-2008 Sun Microsystems, Inc.  All Rights Reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -208,7 +208,9 @@
    1.11      Thread* thread = ThreadLocalStorage::get_thread_slow();
    1.12      VMError(thread, size, message, file_name, line_no).report_and_die();
    1.13    }
    1.14 -  vm_abort();
    1.15 +
    1.16 +  // Dump core and abort
    1.17 +  vm_abort(true);
    1.18  }
    1.19  
    1.20  void report_vm_out_of_memory_vararg(const char* file_name, int line_no, size_t size, const char* format, ...) {

mercurial