< prev index next >

src/hotspot/share/utilities/exceptions.cpp

Print this page

        

*** 227,237 **** InstanceKlass* k = SystemDictionary::StackOverflowError_klass(); oop e = k->allocate_instance(CHECK); exception = Handle(THREAD, e); // fill_in_stack trace does gc assert(k->is_initialized(), "need to increase java_thread_min_stack_allowed calculation"); if (StackTraceInThrowable) { ! java_lang_Throwable::fill_in_stack_trace(exception, method()); } // Increment counter for hs_err file reporting Atomic::inc(&Exceptions::_stack_overflow_errors); } else { // if prior exception, throw that one instead --- 227,237 ---- InstanceKlass* k = SystemDictionary::StackOverflowError_klass(); oop e = k->allocate_instance(CHECK); exception = Handle(THREAD, e); // fill_in_stack trace does gc assert(k->is_initialized(), "need to increase java_thread_min_stack_allowed calculation"); if (StackTraceInThrowable) { ! java_lang_Throwable::fill_in_stack_trace(exception, method); } // Increment counter for hs_err file reporting Atomic::inc(&Exceptions::_stack_overflow_errors); } else { // if prior exception, throw that one instead
< prev index next >