jdk/src/share/native/sun/management/ThreadImpl.c
JNIEXPORT void JNICALL
Java_sun_management_ThreadImpl_getThreadTotalCpuTime1
(JNIEnv *env, jclass cls, jlongArray ids, jlongArray timeArray)
{
{- -------------------------------------------
(1) jmm_GetThreadCpuTimesWithKind() を呼び出すだけ.
---------------------------------------- -}
jmm_interface->GetThreadCpuTimesWithKind(env, ids, timeArray,
JNI_TRUE /* user+sys */);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.