src/share/vm/prims/jvm.h
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/prims/jvm.h

src/share/vm/prims/jvm.h

Print this page

        

*** 861,870 **** --- 861,877 ---- */ JNIEXPORT jboolean JNICALL JVM_IsConstructorIx(JNIEnv *env, jclass cb, int index); /* + * Is the given method generated by the VM. + * The method is identified by method_index. + */ + JNIEXPORT jboolean JNICALL + JVM_IsVMGeneratedMethodIx(JNIEnv *env, jclass cb, int index); + + /* * Returns the name of a given method in UTF format. * The result remains valid until JVM_ReleaseUTF is called. * * The caller must treat the string as a constant and not modify it * in any way.
src/share/vm/prims/jvm.h
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File