We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed5ed75 + 6c224b3 commit 2cabb98Copy full SHA for 2cabb98
src/hotspot/share/prims/jvmtiThreadState.inline.hpp
@@ -72,6 +72,8 @@ void JvmtiThreadState::set_head_env_thread_state(JvmtiEnvThreadState* ets) {
72
_head_env_thread_state = ets;
73
}
74
75
+PRAGMA_DIAG_PUSH
76
+PRAGMA_NONNULL_IGNORED
77
inline JvmtiThreadState* JvmtiThreadState::state_for_while_locked(JavaThread *thread, oop thread_oop) {
78
assert(JvmtiThreadState_lock->is_locked(), "sanity check");
79
assert(thread != NULL || thread_oop != NULL, "sanity check");
@@ -100,6 +102,7 @@ inline JvmtiThreadState* JvmtiThreadState::state_for_while_locked(JavaThread *th
100
102
101
103
return state;
104
105
+PRAGMA_DIAG_POP
106
107
inline JvmtiThreadState* JvmtiThreadState::state_for(JavaThread *thread, Handle thread_handle) {
108
// in a case of unmounted virtual thread the thread can be NULL
0 commit comments