File tree 1 file changed +5
-4
lines changed
test/jdk/java/lang/Thread/virtual/stress
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 31
31
/*
32
32
* @test
33
33
* @requires vm.debug == true
34
- * @run main/othervm ParkALot 200000
34
+ * @run main/othervm ParkALot 100000
35
35
*/
36
36
37
37
import java .time .Instant ;
@@ -50,15 +50,16 @@ public static void main(String[] args) {
50
50
iterations = ITERATIONS ;
51
51
}
52
52
53
- int maxThreads = Math .max (Runtime .getRuntime ().availableProcessors () / 2 , 1 );
53
+ int maxThreads = Math .clamp (Runtime .getRuntime ().availableProcessors () / 2 , 1 , 4 );
54
54
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 );
56
56
ThreadFactory factory = Thread .ofPlatform ().factory ();
57
57
try (var executor = Executors .newThreadPerTaskExecutor (factory )) {
58
58
for (int i = 0 ; i < nthreads ; i ++) {
59
59
executor .submit (() -> parkALot (iterations ));
60
60
}
61
61
}
62
+ System .out .format ("%s %d thread(s) done%n" , Instant .now (), nthreads );
62
63
}
63
64
}
64
65
@@ -87,7 +88,7 @@ private static void parkALot(int iterations) {
87
88
if (state == Thread .State .WAITING || state == Thread .State .TIMED_WAITING ) {
88
89
LockSupport .unpark (vthread );
89
90
} else {
90
- Thread .onSpinWait ();
91
+ Thread .yield ();
91
92
}
92
93
}
93
94
}
You can’t perform that action at this time.
0 commit comments