OpenJDK / jdk / jdk
changeset 57586:171e5eb5ebcd
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 21:36:10 +0000 |
parents | 078325484932 |
children | 6e51a868361e |
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 10:22:06 2020 -0800 +++ b/src/hotspot/share/prims/jvmtiThreadState.hpp Tue Jan 07 21:36:10 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(); };