8236124: Minimal VM slowdebug build failed after JDK-8212160

Use macro JVMTI_ONLY to avoid slowdebug build fail

Reviewed-by: coleenp, cjplummer, dholmes
This commit is contained in:
Serguei Spitsyn 2020-01-07 19:57:11 +00:00
parent c4b8e38de4
commit ed044e9142

View File

@ -396,7 +396,7 @@ public:
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();
};