< prev index next >

src/hotspot/share/include/jvm.h

Print this page
rev 53271 : 8216981: Per thread IO statistics in JFR

*** 1193,1202 **** --- 1193,1213 ---- JVM_RawMonitorEnter(void *mon); JNIEXPORT void JNICALL JVM_RawMonitorExit(void *mon); + JNIEXPORT void JNICALL + JVM_callFileReadBytes(JNIEnv* env, jint nr_of_read_bytes); + + JNIEXPORT void JNICALL + JVM_callFileWriteBytes(JNIEnv* env, jint nr_of_written_bytes); + + JNIEXPORT void JNICALL + JVM_callNetworkReadBytes(JNIEnv* env, jint nr_of_read_bytes); + + JNIEXPORT void JNICALL + JVM_callNetworkWriteBytes(JNIEnv* env, jint nr_of_written_bytes); /* * java.lang.management support */ JNIEXPORT void* JNICALL JVM_GetManagement(jint version);
< prev index next >