Skip to content

Commit 46ce288

Browse files
author
Serguei Spitsyn
committedApr 25, 2022
8284233: serviceability/jvmti/vthread/InterruptThreadTest/InterruptThreadTest.java failing in loom repo
1 parent 3a4bf3b commit 46ce288

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed
 

‎test/hotspot/jtreg/serviceability/jvmti/vthread/InterruptThreadTest/InterruptThreadTest.java

+15-10
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,34 @@
3333
public class InterruptThreadTest {
3434
private static final String AGENT_LIB = "InterruptThreadTest";
3535
final Object lock = new Object();
36-
final AtomicBoolean isJNITestingCompleted = new AtomicBoolean(false);
3736

3837
native boolean testJvmtiFunctionsInJNICall(Thread vthread);
3938

39+
volatile private boolean target_is_ready = false;
4040
private boolean iterrupted = false;
4141

4242
final Runnable pinnedTask = () -> {
4343
synchronized (lock) {
44-
do {
45-
try {
46-
lock.wait(1);
47-
} catch (InterruptedException ie) {
48-
System.err.println("Virtual thread was interrupted as expected");
49-
iterrupted = true;
50-
}
51-
} while (!isJNITestingCompleted.get());
44+
try {
45+
target_is_ready = true;
46+
lock.wait();
47+
} catch (InterruptedException ie) {
48+
System.err.println("Virtual thread was interrupted as expected");
49+
iterrupted = true;
50+
}
5251
}
5352
};
5453

5554
void runTest() throws Exception {
5655
Thread vthread = Thread.ofVirtual().name("VThread").start(pinnedTask);
56+
57+
// wait for target virtual thread to reach the expected waiting state
58+
while (!target_is_ready) {
59+
synchronized (lock) {
60+
lock.wait(1);
61+
}
62+
}
5763
testJvmtiFunctionsInJNICall(vthread);
58-
isJNITestingCompleted.set(true);
5964
vthread.join();
6065
if (!iterrupted) {
6166
throw new RuntimeException("Failed: Virtual thread was not interrupted!");

0 commit comments

Comments
 (0)
Please sign in to comment.