Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2174466 | 7 | Daniel Daugherty | P3 | Resolved | Fixed | b51 |
JDK-2180522 | 6u18 | Daniel Daugherty | P3 | Resolved | Fixed | b01 |
JDK-2174068 | 6u14 | Daniel Daugherty | P3 | Resolved | Fixed | b03 |
JDK-2173781 | hs14 | Daniel Daugherty | P3 | Resolved | Fixed | b12 |
Some JavaThread::jvmti_thread_state()/JvmtiThreadState::state_for()
callers are written correctly:
src/share/vm/prims/jni.cpp: jni_ExceptionClear()
620 JvmtiThreadState *state = JavaThread::current()->jvmti_thread_state();
621 if (state != NULL && state->is_exception_detected()) {
622 state->set_exception_caught();
623 }
And some JavaThread::jvmti_thread_state()/JvmtiThreadState::state_for()
callers assume that NULL can never be returned:
src/share/vm/prims/jvmtiEnv.cpp: JvmtiEnv::SetThreadLocalStorage()
100 // otherwise, create the state
101 state = JvmtiThreadState::state_for(java_thread);
102 }
103 state->env_thread_state(this)->set_agent_thread_local_storage_data((void*)data);
callers are written correctly:
src/share/vm/prims/jni.cpp: jni_ExceptionClear()
620 JvmtiThreadState *state = JavaThread::current()->jvmti_thread_state();
621 if (state != NULL && state->is_exception_detected()) {
622 state->set_exception_caught();
623 }
And some JavaThread::jvmti_thread_state()/JvmtiThreadState::state_for()
callers assume that NULL can never be returned:
src/share/vm/prims/jvmtiEnv.cpp: JvmtiEnv::SetThreadLocalStorage()
100 // otherwise, create the state
101 state = JvmtiThreadState::state_for(java_thread);
102 }
103 state->env_thread_state(this)->set_agent_thread_local_storage_data((void*)data);
- backported by
-
JDK-2173781 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
-
- Resolved
-
-
JDK-2174068 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
-
- Resolved
-
-
JDK-2174466 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
-
- Resolved
-
-
JDK-2180522 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
-
- Resolved
-
- relates to
-
JDK-6700114 Assertion (_thread->get_interp_only_mode() == 1,"leaving interp only when mode not one")
-
- Resolved
-