changeset 57546:33ce73818099

8236124: Minimal VM slowdebug build failed after JDK-8212160 Summary: Use macro JVMTI_ONLY to avoid slowdebug build fail Reviewed-by: coleenp, cjplummer, dholmes
author sspitsyn
date Tue, 07 Jan 2020 19:57:11 +0000
parents f155bc493968
children f2dad2a448d0
files src/hotspot/share/prims/jvmtiThreadState.hpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/hotspot/share/prims/jvmtiThreadState.hpp	Tue Jan 07 13:11:35 2020 -0500
+++ b/src/hotspot/share/prims/jvmtiThreadState.hpp	Tue Jan 07 19:57:11 2020 +0000
@@ -396,7 +396,7 @@
   void set_should_post_on_exceptions(bool val) { _thread->set_should_post_on_exceptions_flag(val ? JNI_TRUE : JNI_FALSE); }
 
   // Thread local event queue, which doesn't require taking the Service_lock.
-  void enqueue_event(JvmtiDeferredEvent* event);
+  void enqueue_event(JvmtiDeferredEvent* event) NOT_JVMTI_RETURN;
   void post_events(JvmtiEnv* env);
   void run_nmethod_entry_barriers();
 };