| 378 | } |
| 379 | |
| 380 | static VMThread* fromJavaThread(JNIEnv* env, jthread thread) { |
| 381 | return (VMThread*)(uintptr_t)env->GetLongField(thread, _eetop); |
| 382 | } |
| 383 | |
| 384 | static jlong javaThreadId(JNIEnv* env, jthread thread) { |
| 385 | return env->GetLongField(thread, _tid); |
nothing calls this directly
no outgoing calls
no test coverage detected