File tree 1 file changed +4
-1
lines changed
test/jdk/java/lang/Thread/virtual
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 40
40
*/
41
41
42
42
import java .util .concurrent .atomic .AtomicBoolean ;
43
+ import java .util .concurrent .CountDownLatch ;
43
44
44
45
import jdk .test .lib .thread .VThreadPinner ;
45
46
import org .junit .jupiter .api .Test ;
46
47
import static org .junit .jupiter .api .Assertions .*;
47
48
48
49
class ThreadPollOnYield {
50
+ private static final CountDownLatch started = new CountDownLatch (1 );
49
51
static void foo (AtomicBoolean done ) {
52
+ started .countDown ();
50
53
while (!done .get ()) {
51
54
Thread .yield ();
52
55
}
@@ -58,7 +61,7 @@ void testThreadYieldPolls() throws Exception {
58
61
var vthread = Thread .ofVirtual ().start (() -> {
59
62
VThreadPinner .runPinned (() -> foo (done ));
60
63
});
61
- Thread . sleep ( 5000 );
64
+ started . await ( );
62
65
done .set (true );
63
66
vthread .join ();
64
67
You can’t perform that action at this time.
1 commit comments
openjdk-notifier[bot] commentedon Feb 21, 2025
Review
Issues