File tree 1 file changed +15
-10
lines changed
test/hotspot/jtreg/serviceability/jvmti/vthread/InterruptThreadTest
1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change 33
33
public class InterruptThreadTest {
34
34
private static final String AGENT_LIB = "InterruptThreadTest" ;
35
35
final Object lock = new Object ();
36
- final AtomicBoolean isJNITestingCompleted = new AtomicBoolean (false );
37
36
38
37
native boolean testJvmtiFunctionsInJNICall (Thread vthread );
39
38
39
+ volatile private boolean target_is_ready = false ;
40
40
private boolean iterrupted = false ;
41
41
42
42
final Runnable pinnedTask = () -> {
43
43
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
+ }
52
51
}
53
52
};
54
53
55
54
void runTest () throws Exception {
56
55
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
+ }
57
63
testJvmtiFunctionsInJNICall (vthread );
58
- isJNITestingCompleted .set (true );
59
64
vthread .join ();
60
65
if (!iterrupted ) {
61
66
throw new RuntimeException ("Failed: Virtual thread was not interrupted!" );
You can’t perform that action at this time.
0 commit comments