--- old/src/hotspot/share/prims/jvmtiEnvBase.cpp 2019-10-29 02:51:23.315559264 -0400 +++ new/src/hotspot/share/prims/jvmtiEnvBase.cpp 2019-10-29 02:51:22.116545140 -0400 @@ -1214,8 +1214,7 @@ if (jts == _thread_in_native) { state |= JVMTI_THREAD_STATE_IN_NATIVE; } - OSThread* osThread = thr->osthread(); - if (osThread != NULL && osThread->interrupted()) { + if (thr->is_interrupted(false)) { state |= JVMTI_THREAD_STATE_INTERRUPTED; } }