< prev index next >

jdk/src/java.base/share/native/include/jvm.h

Print this page

        

*** 176,185 **** --- 176,209 ---- JNIEXPORT jobject JNICALL JVM_GetStackTraceElement(JNIEnv *env, jobject throwable, jint index); /* + * java.lang.StackWalker + */ + JNIEXPORT jobject JNICALL + JVM_CallStackWalk(JNIEnv *env, jobject stackStream, jlong mode, + jint skip_frames, jint frame_count, jint start_index, + jobjectArray classes, + jobjectArray frames); + + JNIEXPORT jint JNICALL + JVM_MoreStackWalk(JNIEnv *env, jobject stackStream, jlong mode, jlong anchor, + jint frame_count, jint start_index, + jobjectArray classes, + jobjectArray frames); + + JNIEXPORT void JNICALL + JVM_FillStackFrames(JNIEnv* env, jclass cls, + jint start_index, + jobjectArray stackFrames, + jint from_index, jint toIndex); + + JNIEXPORT void JNICALL + JVM_SetMethodInfo(JNIEnv* env, jobject frame); + + /* * java.lang.Thread */ JNIEXPORT void JNICALL JVM_StartThread(JNIEnv *env, jobject thread);
< prev index next >