Skip to content

Commit

Permalink
Partial backport of oracle#8114
Browse files Browse the repository at this point in the history
svm: disable the new VirtualThread.notifyJvmtiDisableSuspend intrinsic
until JVMTI is supported on svm

(cherry picked from commit 944f5d1)
  • Loading branch information
davleopo authored and zakkak committed Jan 19, 2024
1 parent f131d0e commit 004f750
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,13 @@ private void notifyJvmtiHideFrames(boolean hide) {
// unimplemented (GR-45392)
}

@Substitute
@SuppressWarnings({"static-method", "unused"})
@TargetElement(onlyWith = JDK22OrLater.class)
private void notifyJvmtiDisableSuspend(boolean hide) {
// unimplemented (GR-51158)
}

@Alias volatile Thread carrierThread;

@Alias volatile Target_sun_nio_ch_Interruptible nioBlocker;
Expand Down

0 comments on commit 004f750

Please sign in to comment.