Skip to content

Commit 1785501

Browse files
committedOct 25, 2024
Fix JvmtiUnmountBeginMark
1 parent c7a82c4 commit 1785501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class JvmtiUnmountBeginMark : public StackObj {
8484
// Don't preempt in case there is an async exception installed since
8585
// we would incorrectly throw it during the unmount logic in the carrier.
8686
if (_target->has_async_exception_condition()) {
87-
_failed = false;
87+
_failed = true;
8888
}
8989
} else {
9090
_target->set_is_in_VTMS_transition(true);

0 commit comments

Comments
 (0)
Please sign in to comment.