We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0198c83 commit 2075294Copy full SHA for 2075294
test/jdk/java/lang/Thread/virtual/JfrEvents.java
@@ -98,13 +98,13 @@ public void testVirtualThreadPinned() throws Exception {
98
Object lock = new Object();
99
synchronized (lock) {
100
// pinned, duration < 500ms
101
- LockSupport.parkNanos(1);
+ Thread.sleep(1);
102
103
// pinned, duration > 500ms
104
- long nanos = Duration.ofSeconds(5).toNanos();
105
- LockSupport.parkNanos(nanos);
106
+ Thread.sleep(Duration.ofSeconds(3));
107
}
+ return null;
108
});
109
} finally {
110
recording.stop();
0 commit comments