src/share/vm/prims/jniCheck.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File warning2 Cdiff src/share/vm/prims/jniCheck.hpp

src/share/vm/prims/jniCheck.hpp

Print this page
rev 3821 : [mq]: unused

*** 33,43 **** // Report a JNI failure caught by -Xcheck:jni. Perform a core dump. // Note: two variations -- one to be called when in VM state (e.g. when // within IN_VM macro), one to be called when in NATIVE state. // When in VM state: ! static void ReportJNIFatalError(JavaThread* thr, const char *msg) { tty->print_cr("FATAL ERROR in native method: %s", msg); thr->print_stack(); os::abort(true); } } --- 33,43 ---- // Report a JNI failure caught by -Xcheck:jni. Perform a core dump. // Note: two variations -- one to be called when in VM state (e.g. when // within IN_VM macro), one to be called when in NATIVE state. // When in VM state: ! static inline void ReportJNIFatalError(JavaThread* thr, const char *msg) { tty->print_cr("FATAL ERROR in native method: %s", msg); thr->print_stack(); os::abort(true); } }
src/share/vm/prims/jniCheck.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File