Skip to content

Commit b24ad7c

Browse files
author
Alan Bateman
committedSep 27, 2023
8316924: java/lang/Thread/virtual/stress/ParkALot.java times out
Reviewed-by: jpai
1 parent ad6df41 commit b24ad7c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎test/jdk/java/lang/Thread/virtual/stress/ParkALot.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/*
3232
* @test
3333
* @requires vm.debug == true
34-
* @run main/othervm ParkALot 200000
34+
* @run main/othervm ParkALot 100000
3535
*/
3636

3737
import java.time.Instant;
@@ -50,15 +50,16 @@ public static void main(String[] args) {
5050
iterations = ITERATIONS;
5151
}
5252

53-
int maxThreads = Math.max(Runtime.getRuntime().availableProcessors() / 2, 1);
53+
int maxThreads = Math.clamp(Runtime.getRuntime().availableProcessors() / 2, 1, 4);
5454
for (int nthreads = 1; nthreads <= maxThreads; nthreads++) {
55-
System.out.format("%s %d threads ...%n", Instant.now(), nthreads);
55+
System.out.format("%s %d thread(s) ...%n", Instant.now(), nthreads);
5656
ThreadFactory factory = Thread.ofPlatform().factory();
5757
try (var executor = Executors.newThreadPerTaskExecutor(factory)) {
5858
for (int i = 0; i < nthreads; i++) {
5959
executor.submit(() -> parkALot(iterations));
6060
}
6161
}
62+
System.out.format("%s %d thread(s) done%n", Instant.now(), nthreads);
6263
}
6364
}
6465

@@ -87,7 +88,7 @@ private static void parkALot(int iterations) {
8788
if (state == Thread.State.WAITING || state == Thread.State.TIMED_WAITING) {
8889
LockSupport.unpark(vthread);
8990
} else {
90-
Thread.onSpinWait();
91+
Thread.yield();
9192
}
9293
}
9394
}

0 commit comments

Comments
 (0)
Please sign in to comment.