Skip to content

Commit ebb99de

Browse files
committedSep 13, 2021
Pin virtual thread in JNI MonitorEnter
1 parent 3390dca commit ebb99de

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed
 

‎src/hotspot/share/prims/jni.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -2718,6 +2718,10 @@ JNI_ENTRY(jint, jni_MonitorEnter(JNIEnv *env, jobject jobj))
27182718

27192719
Handle obj(thread, JNIHandles::resolve_non_null(jobj));
27202720
ObjectSynchronizer::jni_enter(obj, thread);
2721+
if (!Continuation::pin(thread)) {
2722+
ObjectSynchronizer::jni_exit(obj(), CHECK_(JNI_ERR));
2723+
THROW_(vmSymbols::java_lang_IllegalMonitorStateException(), JNI_ERR);
2724+
}
27212725
ret = JNI_OK;
27222726
return ret;
27232727
JNI_END
@@ -2737,7 +2741,9 @@ JNI_ENTRY(jint, jni_MonitorExit(JNIEnv *env, jobject jobj))
27372741

27382742
Handle obj(THREAD, JNIHandles::resolve_non_null(jobj));
27392743
ObjectSynchronizer::jni_exit(obj(), CHECK_(JNI_ERR));
2740-
2744+
if (!Continuation::unpin(thread)) {
2745+
THROW_(vmSymbols::java_lang_IllegalMonitorStateException(), JNI_ERR);
2746+
}
27412747
ret = JNI_OK;
27422748
return ret;
27432749
JNI_END

‎src/hotspot/share/runtime/continuation.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -3266,7 +3266,7 @@ oop Continuation::continuation_scope(oop cont) {
32663266
bool Continuation::pin(JavaThread* current) {
32673267
ContinuationEntry* ce = current->last_continuation();
32683268
if (ce == nullptr)
3269-
return false;
3269+
return true;
32703270

32713271
oop cont = ce->cont_oop();
32723272
assert (cont != nullptr, "");
@@ -3283,7 +3283,7 @@ bool Continuation::pin(JavaThread* current) {
32833283
bool Continuation::unpin(JavaThread* current) {
32843284
ContinuationEntry* ce = current->last_continuation();
32853285
if (ce == nullptr)
3286-
return false;
3286+
return true;
32873287

32883288
oop cont = ce->cont_oop();
32893289
assert (cont != nullptr, "");

0 commit comments

Comments
 (0)
Please sign in to comment.