src/hotspot/share/ci/ciEnv.cpp
changeset 58512 5185bc8dcbb1
parent 58358 d658f4379c63
child 58679 9c3209ff7550
child 58722 cba8afa5cfed
--- a/src/hotspot/share/ci/ciEnv.cpp	Wed Oct 09 08:09:12 2019 +0200
+++ b/src/hotspot/share/ci/ciEnv.cpp	Tue Oct 08 15:30:39 2019 +0200
@@ -238,6 +238,7 @@
   _jvmti_can_access_local_variables     = JvmtiExport::can_access_local_variables();
   _jvmti_can_post_on_exceptions         = JvmtiExport::can_post_on_exceptions();
   _jvmti_can_pop_frame                  = JvmtiExport::can_pop_frame();
+  _jvmti_can_get_owned_monitor_info     = JvmtiExport::can_get_owned_monitor_info();
 }
 
 bool ciEnv::jvmti_state_changed() const {
@@ -262,6 +263,10 @@
       JvmtiExport::can_pop_frame()) {
     return true;
   }
+  if (!_jvmti_can_get_owned_monitor_info &&
+      JvmtiExport::can_get_owned_monitor_info()) {
+    return true;
+  }
 
   return false;
 }