Skip to content

Commit ab1ac4c

Browse files
author
Leonid Mesnik
committedMar 9, 2023
Merge branch 'fibers' of https://github.com/openjdk/loom into fibers
2 parents cbf9fad + 1c53e5a commit ab1ac4c

File tree

28 files changed

+280
-400
lines changed

28 files changed

+280
-400
lines changed
 

‎src/hotspot/share/prims/jni.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
#include "jvmci/jvmciCompiler.hpp"
102102
#endif
103103

104-
static jint CurrentVersion = JNI_VERSION_20;
104+
static jint CurrentVersion = JNI_VERSION_21;
105105

106106
#if defined(_WIN32) && !defined(USE_VECTORED_EXCEPTION_HANDLING)
107107
extern LONG WINAPI topLevelExceptionFilter(_EXCEPTION_POINTERS* );

‎src/hotspot/share/prims/jvmti.xml

+5-25
Original file line numberDiff line numberDiff line change
@@ -1724,13 +1724,9 @@ jvmtiEnv *jvmti;
17241724
</errors>
17251725
</function>
17261726

1727-
<function id="SuspendAllVirtualThreads" num="118" since="19">
1727+
<function id="SuspendAllVirtualThreads" num="118" since="21">
17281728
<synopsis>Suspend All Virtual Threads</synopsis>
17291729
<description>
1730-
<b> SuspendAllVirtualThreads is a preview API of the Java platform. </b>
1731-
<i>Preview features may be removed in a future release, or upgraded to
1732-
permanent features of the Java platform.</i>
1733-
<p/>
17341730
Suspend all virtual threads except those in the exception list.
17351731
Virtual threads that are currently suspended do not change state.
17361732
Virtual threads may be resumed with
@@ -1850,13 +1846,9 @@ jvmtiEnv *jvmti;
18501846
</errors>
18511847
</function>
18521848

1853-
<function id="ResumeAllVirtualThreads" num="119" since="19">
1849+
<function id="ResumeAllVirtualThreads" num="119" since="21">
18541850
<synopsis>Resume All Virtual Threads</synopsis>
18551851
<description>
1856-
<b> ResumeAllVirtualThreads is a preview API of the Java platform. </b>
1857-
<i>Preview features may be removed in a future release, or upgraded to
1858-
permanent features of the Java platform.</i>
1859-
<p/>
18601852
Resume all virtual threads except those in the exception list.
18611853
Virtual threads that are currently resumed do not change state.
18621854
Virtual threads may be suspended with
@@ -10650,12 +10642,8 @@ myInit() {
1065010642
called and <eventlink id="SampledObjectAlloc"></eventlink> events can be generated.
1065110643
</description>
1065210644
</capabilityfield>
10653-
<capabilityfield id="can_support_virtual_threads" since="19">
10645+
<capabilityfield id="can_support_virtual_threads" since="21">
1065410646
<description>
10655-
<b> can_support_virtual_threads is a preview API of the Java platform. </b>
10656-
<i>Preview features may be removed in a future release, or upgraded to
10657-
permanent features of the Java platform.</i>
10658-
<p/>
1065910647
Can support virtual threads.
1066010648
If this capability is enabled then the following functions can be called:
1066110649
<functionlink id="SuspendAllVirtualThreads"></functionlink>,
@@ -13036,12 +13024,8 @@ myInit() {
1303613024
</event>
1303713025

1303813026
<event label="Virtual Thread Start"
13039-
id="VirtualThreadStart" const="JVMTI_EVENT_VIRTUAL_THREAD_START" filtered="thread" num="87" phase="start" since="19">
13027+
id="VirtualThreadStart" const="JVMTI_EVENT_VIRTUAL_THREAD_START" filtered="thread" num="87" phase="start" since="21">
1304013028
<description>
13041-
<b> VirtualThreadStart is a preview API of the Java platform. </b>
13042-
<i>Preview features may be removed in a future release, or upgraded to
13043-
permanent features of the Java platform.</i>
13044-
<p/>
1304513029
A virtual thread start event is generated before its initial method executes.
1304613030
<p/>
1304713031
The event is sent on the newly started <paramlink id="virtual_thread"></paramlink>.
@@ -13069,12 +13053,8 @@ myInit() {
1306913053
</event>
1307013054

1307113055
<event label="Virtual Thread End"
13072-
id="VirtualThreadEnd" const="JVMTI_EVENT_VIRTUAL_THREAD_END" filtered="thread" num="88" phase="start" since="19">
13056+
id="VirtualThreadEnd" const="JVMTI_EVENT_VIRTUAL_THREAD_END" filtered="thread" num="88" phase="start" since="21">
1307313057
<description>
13074-
<b> VirtualThreadEnd is a preview API of the Java platform. </b>
13075-
<i>Preview features may be removed in a future release, or upgraded to
13076-
permanent features of the Java platform.</i>
13077-
<p/>
1307813058
A virtual thread end event is generated after its initial method has finished execution.
1307913059
<p/>
1308013060
The event is sent on the terminating <paramlink id="virtual_thread"></paramlink>.

‎src/hotspot/share/prims/jvmtiH.xsl

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ enum {
116116
JVMTI_VERSION_9 = 0x30090000,
117117
JVMTI_VERSION_11 = 0x300B0000,
118118
JVMTI_VERSION_19 = 0x30130000,
119+
JVMTI_VERSION_21 = 0x30150000,
119120

120121
JVMTI_VERSION = 0x30000000 + (</xsl:text>
121122
<xsl:value-of select="$majorversion"/>

‎src/hotspot/share/runtime/threads.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1166,6 +1166,7 @@ jboolean Threads::is_supported_jni_version(jint version) {
11661166
if (version == JNI_VERSION_10) return JNI_TRUE;
11671167
if (version == JNI_VERSION_19) return JNI_TRUE;
11681168
if (version == JNI_VERSION_20) return JNI_TRUE;
1169+
if (version == JNI_VERSION_21) return JNI_TRUE;
11691170
return JNI_FALSE;
11701171
}
11711172

‎src/java.base/share/classes/java/lang/System.java

+2-11
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
import jdk.internal.vm.annotation.ForceInline;
9090
import jdk.internal.vm.annotation.IntrinsicCandidate;
9191
import jdk.internal.vm.annotation.Stable;
92-
import jdk.internal.vm.annotation.ChangesCurrentThread;
9392
import sun.nio.fs.DefaultFileSystemProvider;
9493
import sun.reflect.annotation.AnnotationType;
9594
import sun.nio.ch.Interruptible;
@@ -2563,17 +2562,9 @@ public Thread currentCarrierThread() {
25632562
return Thread.currentCarrierThread();
25642563
}
25652564

2566-
@ChangesCurrentThread
25672565
public <V> V executeOnCarrierThread(Callable<V> task) throws Exception {
2568-
Thread thread = Thread.currentThread();
2569-
if (thread.isVirtual()) {
2570-
Thread carrier = Thread.currentCarrierThread();
2571-
carrier.setCurrentThread(carrier);
2572-
try {
2573-
return task.call();
2574-
} finally {
2575-
carrier.setCurrentThread(thread);
2576-
}
2566+
if (Thread.currentThread() instanceof VirtualThread vthread) {
2567+
return vthread.executeOnCarrierThread(task);
25772568
} else {
25782569
return task.call();
25792570
}

‎src/java.base/share/classes/java/lang/Thread.java

+71-63
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@
4141
import java.util.function.Predicate;
4242
import java.util.stream.Stream;
4343
import jdk.internal.event.ThreadSleepEvent;
44-
import jdk.internal.javac.PreviewFeature;
45-
import jdk.internal.misc.PreviewFeatures;
4644
import jdk.internal.misc.StructureViolationExceptions;
4745
import jdk.internal.misc.TerminatingThreadLocal;
4846
import jdk.internal.misc.Unsafe;
@@ -464,24 +462,32 @@ public static void sleep(long millis) throws InterruptedException {
464462
if (millis < 0) {
465463
throw new IllegalArgumentException("timeout value is negative");
466464
}
465+
long nanos = MILLISECONDS.toNanos(millis);
467466

468-
if (currentThread() instanceof VirtualThread vthread) {
469-
long nanos = MILLISECONDS.toNanos(millis);
470-
vthread.sleepNanos(nanos);
471-
return;
472-
}
473-
467+
// create jdk.ThreadSleepEvent event if enabled
468+
ThreadSleepEvent event = null;
474469
if (ThreadSleepEvent.isTurnedOn()) {
475-
ThreadSleepEvent event = new ThreadSleepEvent();
476470
try {
477-
event.time = MILLISECONDS.toNanos(millis);
471+
event = new ThreadSleepEvent();
472+
event.time = nanos;
478473
event.begin();
474+
} catch (OutOfMemoryError e) {
475+
event = null;
476+
}
477+
}
478+
479+
try {
480+
if (currentThread() instanceof VirtualThread vthread) {
481+
vthread.sleepNanos(nanos);
482+
} else {
479483
sleep0(millis);
480-
} finally {
481-
event.commit();
482484
}
483-
} else {
484-
sleep0(millis);
485+
} finally {
486+
try {
487+
if (event != null) event.commit();
488+
} catch (OutOfMemoryError e) {
489+
// ignore
490+
}
485491
}
486492
}
487493

@@ -518,14 +524,6 @@ public static void sleep(long millis, int nanos) throws InterruptedException {
518524
throw new IllegalArgumentException("nanosecond timeout value out of range");
519525
}
520526

521-
if (currentThread() instanceof VirtualThread vthread) {
522-
// total sleep time, in nanoseconds
523-
long totalNanos = MILLISECONDS.toNanos(millis);
524-
totalNanos += Math.min(Long.MAX_VALUE - totalNanos, nanos);
525-
vthread.sleepNanos(totalNanos);
526-
return;
527-
}
528-
529527
if (nanos > 0 && millis < Long.MAX_VALUE) {
530528
millis++;
531529
}
@@ -550,20 +548,40 @@ public static void sleep(long millis, int nanos) throws InterruptedException {
550548
*/
551549
public static void sleep(Duration duration) throws InterruptedException {
552550
long nanos = NANOSECONDS.convert(duration); // MAX_VALUE if > 292 years
553-
if (nanos < 0)
551+
if (nanos < 0) {
554552
return;
553+
}
555554

556-
if (currentThread() instanceof VirtualThread vthread) {
557-
vthread.sleepNanos(nanos);
558-
return;
555+
// create jdk.ThreadSleepEvent event if enabled
556+
ThreadSleepEvent event = null;
557+
if (ThreadSleepEvent.isTurnedOn()) {
558+
try {
559+
event = new ThreadSleepEvent();
560+
event.time = nanos;
561+
event.begin();
562+
} catch (OutOfMemoryError e) {
563+
event = null;
564+
}
559565
}
560566

561-
// convert to milliseconds
562-
long millis = MILLISECONDS.convert(nanos, NANOSECONDS);
563-
if (nanos > NANOSECONDS.convert(millis, MILLISECONDS)) {
564-
millis += 1L;
567+
try {
568+
if (currentThread() instanceof VirtualThread vthread) {
569+
vthread.sleepNanos(nanos);
570+
} else {
571+
// convert to milliseconds
572+
long millis = NANOSECONDS.toMillis(nanos);
573+
if (nanos > MILLISECONDS.toNanos(millis)) {
574+
millis += 1L;
575+
}
576+
sleep0(millis);
577+
}
578+
} finally {
579+
try {
580+
if (event != null) event.commit();
581+
} catch (OutOfMemoryError e) {
582+
// ignore
583+
}
565584
}
566-
sleep(millis);
567585
}
568586

569587
/**
@@ -611,7 +629,7 @@ public static void onSpinWait() {}
611629
* the constructing thread.
612630
* See Thread initialization.
613631
*/
614-
static final int NO_INHERIT_THREAD_LOCALS = 1 << 1;
632+
static final int NO_INHERIT_THREAD_LOCALS = 1 << 2;
615633

616634
/**
617635
* Helper class to generate thread identifiers. The identifiers start at
@@ -800,9 +818,8 @@ private static ClassLoader contextClassLoader(Thread parent) {
800818
* }
801819
*
802820
* @return A builder for creating {@code Thread} or {@code ThreadFactory} objects.
803-
* @since 19
821+
* @since 21
804822
*/
805-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
806823
public static Builder.OfPlatform ofPlatform() {
807824
return new ThreadBuilders.PlatformThreadBuilder();
808825
}
@@ -821,12 +838,9 @@ public static Builder.OfPlatform ofPlatform() {
821838
* }
822839
*
823840
* @return A builder for creating {@code Thread} or {@code ThreadFactory} objects.
824-
* @throws UnsupportedOperationException if preview features are not enabled
825-
* @since 19
841+
* @since 21
826842
*/
827-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
828843
public static Builder.OfVirtual ofVirtual() {
829-
PreviewFeatures.ensureEnabled();
830844
return new ThreadBuilders.VirtualThreadBuilder();
831845
}
832846

@@ -856,14 +870,10 @@ public static Builder.OfVirtual ofVirtual() {
856870
*
857871
* @see Thread#ofPlatform()
858872
* @see Thread#ofVirtual()
859-
* @since 19
873+
* @since 21
860874
*/
861-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
862875
public sealed interface Builder
863-
permits Builder.OfPlatform,
864-
Builder.OfVirtual,
865-
ThreadBuilders.BaseThreadBuilder {
866-
876+
permits Builder.OfPlatform, Builder.OfVirtual {
867877

868878
/**
869879
* Sets the thread name.
@@ -962,9 +972,8 @@ public sealed interface Builder
962972
* this interface causes a {@code NullPointerException} to be thrown.
963973
*
964974
* @see Thread#ofPlatform()
965-
* @since 19
975+
* @since 21
966976
*/
967-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
968977
sealed interface OfPlatform extends Builder
969978
permits ThreadBuilders.PlatformThreadBuilder {
970979

@@ -1037,9 +1046,8 @@ default OfPlatform daemon() {
10371046
* this interface causes a {@code NullPointerException} to be thrown.
10381047
*
10391048
* @see Thread#ofVirtual()
1040-
* @since 19
1049+
* @since 21
10411050
*/
1042-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
10431051
sealed interface OfVirtual extends Builder
10441052
permits ThreadBuilders.VirtualThreadBuilder {
10451053

@@ -1467,14 +1475,11 @@ public Thread(ThreadGroup group, Runnable task, String name,
14671475
*
14681476
* @param task the object to run when the thread executes
14691477
* @return a new, and started, virtual thread
1470-
* @throws UnsupportedOperationException if preview features are not enabled
14711478
* @see <a href="#inheritance">Inheritance when creating threads</a>
1472-
* @since 19
1479+
* @since 21
14731480
*/
1474-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
14751481
public static Thread startVirtualThread(Runnable task) {
14761482
Objects.requireNonNull(task);
1477-
PreviewFeatures.ensureEnabled();
14781483
var thread = ThreadBuilders.newVirtualThread(null, null, 0, task);
14791484
thread.start();
14801485
return thread;
@@ -1486,9 +1491,8 @@ public static Thread startVirtualThread(Runnable task) {
14861491
*
14871492
* @return {@code true} if this thread is a virtual thread
14881493
*
1489-
* @since 19
1494+
* @since 21
14901495
*/
1491-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
14921496
public final boolean isVirtual() {
14931497
return (this instanceof BaseVirtualThread);
14941498
}
@@ -1523,6 +1527,8 @@ void start(ThreadContainer container) {
15231527
throw new IllegalThreadStateException();
15241528

15251529
// bind thread to container
1530+
if (this.container != null)
1531+
throw new IllegalThreadStateException();
15261532
setThreadContainer(container);
15271533

15281534
// start thread
@@ -1597,15 +1603,17 @@ void clearReferences() {
15971603
* a chance to clean up before it actually exits.
15981604
*/
15991605
private void exit() {
1600-
// pop any remaining scopes from the stack, this may block
1601-
if (headStackableScopes != null) {
1602-
StackableScope.popAll();
1603-
}
1604-
1605-
// notify container that thread is exiting
1606-
ThreadContainer container = threadContainer();
1607-
if (container != null) {
1608-
container.onExit(this);
1606+
try {
1607+
// pop any remaining scopes from the stack, this may block
1608+
if (headStackableScopes != null) {
1609+
StackableScope.popAll();
1610+
}
1611+
} finally {
1612+
// notify container that thread is exiting
1613+
ThreadContainer container = threadContainer();
1614+
if (container != null) {
1615+
container.onExit(this);
1616+
}
16091617
}
16101618

16111619
try {

‎src/java.base/share/classes/java/lang/ThreadBuilders.java

+57-22
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*/
2525
package java.lang;
2626

27-
import java.lang.Thread.Builder;
2827
import java.lang.Thread.Builder.OfPlatform;
2928
import java.lang.Thread.Builder.OfVirtual;
3029
import java.lang.Thread.UncaughtExceptionHandler;
@@ -41,12 +40,12 @@
4140
* Defines static methods to create platform and virtual thread builders.
4241
*/
4342
class ThreadBuilders {
43+
private ThreadBuilders() { }
4444

4545
/**
46-
* Base implementation of ThreadBuilder.
46+
* Base class for Thread.Builder implementations.
4747
*/
48-
static abstract non-sealed
49-
class BaseThreadBuilder<T extends Builder> implements Builder {
48+
private static class BaseThreadBuilder {
5049
private String name;
5150
private long counter;
5251
private int characteristics;
@@ -76,49 +75,37 @@ String nextThreadName() {
7675
}
7776
}
7877

79-
@Override
80-
@SuppressWarnings("unchecked")
81-
public T name(String name) {
78+
void setName(String name) {
8279
this.name = Objects.requireNonNull(name);
8380
this.counter = -1;
84-
return (T) this;
8581
}
8682

87-
@Override
88-
@SuppressWarnings("unchecked")
89-
public T name(String prefix, long start) {
83+
void setName(String prefix, long start) {
9084
Objects.requireNonNull(prefix);
9185
if (start < 0)
9286
throw new IllegalArgumentException("'start' is negative");
9387
this.name = prefix;
9488
this.counter = start;
95-
return (T) this;
9689
}
9790

98-
@Override
99-
@SuppressWarnings("unchecked")
100-
public T inheritInheritableThreadLocals(boolean inherit) {
91+
void setInheritInheritableThreadLocals(boolean inherit) {
10192
if (inherit) {
10293
characteristics &= ~Thread.NO_INHERIT_THREAD_LOCALS;
10394
} else {
10495
characteristics |= Thread.NO_INHERIT_THREAD_LOCALS;
10596
}
106-
return (T) this;
10797
}
10898

109-
@Override
110-
@SuppressWarnings("unchecked")
111-
public T uncaughtExceptionHandler(UncaughtExceptionHandler ueh) {
99+
void setUncaughtExceptionHandler(UncaughtExceptionHandler ueh) {
112100
this.uhe = Objects.requireNonNull(ueh);
113-
return (T) this;
114101
}
115102
}
116103

117104
/**
118105
* ThreadBuilder.OfPlatform implementation.
119106
*/
120107
static final class PlatformThreadBuilder
121-
extends BaseThreadBuilder<OfPlatform> implements OfPlatform {
108+
extends BaseThreadBuilder implements OfPlatform {
122109
private ThreadGroup group;
123110
private boolean daemon;
124111
private boolean daemonChanged;
@@ -134,6 +121,30 @@ String nextThreadName() {
134121
return (name != null) ? name : Thread.genThreadName();
135122
}
136123

124+
@Override
125+
public OfPlatform name(String name) {
126+
setName(name);
127+
return this;
128+
}
129+
130+
@Override
131+
public OfPlatform name(String prefix, long start) {
132+
setName(prefix, start);
133+
return this;
134+
}
135+
136+
@Override
137+
public OfPlatform inheritInheritableThreadLocals(boolean inherit) {
138+
setInheritInheritableThreadLocals(inherit);
139+
return this;
140+
}
141+
142+
@Override
143+
public OfPlatform uncaughtExceptionHandler(UncaughtExceptionHandler ueh) {
144+
setUncaughtExceptionHandler(ueh);
145+
return this;
146+
}
147+
137148
@Override
138149
public OfPlatform group(ThreadGroup group) {
139150
this.group = Objects.requireNonNull(group);
@@ -197,7 +208,7 @@ public ThreadFactory factory() {
197208
* ThreadBuilder.OfVirtual implementation.
198209
*/
199210
static final class VirtualThreadBuilder
200-
extends BaseThreadBuilder<OfVirtual> implements OfVirtual {
211+
extends BaseThreadBuilder implements OfVirtual {
201212
private Executor scheduler;
202213

203214
VirtualThreadBuilder() {
@@ -210,6 +221,30 @@ static final class VirtualThreadBuilder
210221
this.scheduler = Objects.requireNonNull(scheduler);
211222
}
212223

224+
@Override
225+
public OfVirtual name(String name) {
226+
setName(name);
227+
return this;
228+
}
229+
230+
@Override
231+
public OfVirtual name(String prefix, long start) {
232+
setName(prefix, start);
233+
return this;
234+
}
235+
236+
@Override
237+
public OfVirtual inheritInheritableThreadLocals(boolean inherit) {
238+
setInheritInheritableThreadLocals(inherit);
239+
return this;
240+
}
241+
242+
@Override
243+
public OfVirtual uncaughtExceptionHandler(UncaughtExceptionHandler ueh) {
244+
setUncaughtExceptionHandler(ueh);
245+
return this;
246+
}
247+
213248
@Override
214249
public Thread unstarted(Runnable task) {
215250
Objects.requireNonNull(task);

‎src/java.base/share/classes/java/lang/ThreadLocal.java

+49
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@
2929
import java.util.Objects;
3030
import java.util.concurrent.atomic.AtomicInteger;
3131
import java.util.function.Supplier;
32+
import java.util.stream.Collectors;
3233

3334
import jdk.internal.misc.CarrierThreadLocal;
3435
import jdk.internal.misc.TerminatingThreadLocal;
36+
import sun.security.action.GetPropertyAction;
3537

3638
/**
3739
* This class provides thread-local variables. These variables differ from
@@ -77,6 +79,8 @@
7779
* @since 1.2
7880
*/
7981
public class ThreadLocal<T> {
82+
private static final boolean TRACE_VTHREAD_LOCALS = traceVirtualThreadLocals();
83+
8084
/**
8185
* ThreadLocals rely on per-thread linear-probe hash maps attached
8286
* to each thread (Thread.threadLocals and
@@ -228,6 +232,9 @@ private T setInitialValue(Thread t) {
228232
if (this instanceof TerminatingThreadLocal<?> ttl) {
229233
TerminatingThreadLocal.register(ttl);
230234
}
235+
if (TRACE_VTHREAD_LOCALS) {
236+
dumpStackIfVirtualThread();
237+
}
231238
return value;
232239
}
233240

@@ -242,6 +249,9 @@ private T setInitialValue(Thread t) {
242249
*/
243250
public void set(T value) {
244251
set(Thread.currentThread(), value);
252+
if (TRACE_VTHREAD_LOCALS) {
253+
dumpStackIfVirtualThread();
254+
}
245255
}
246256

247257
void setCarrierThreadLocal(T value) {
@@ -788,4 +798,43 @@ private void expungeStaleEntries() {
788798
}
789799
}
790800
}
801+
802+
803+
/**
804+
* Reads the value of the jdk.traceVirtualThreadLocals property to determine if
805+
* a stack trace should be printed when a virtual threads sets a thread local.
806+
*/
807+
private static boolean traceVirtualThreadLocals() {
808+
String propValue = GetPropertyAction.privilegedGetProperty("jdk.traceVirtualThreadLocals");
809+
return (propValue != null)
810+
&& (propValue.isEmpty() || Boolean.parseBoolean(propValue));
811+
}
812+
813+
/**
814+
* Print a stack trace if the current thread is a virtual thread.
815+
*/
816+
static void dumpStackIfVirtualThread() {
817+
if (Thread.currentThread() instanceof VirtualThread vthread) {
818+
try {
819+
var stack = StackWalkerHolder.STACK_WALKER.walk(s ->
820+
s.skip(1) // skip caller
821+
.collect(Collectors.toList()));
822+
823+
// switch to carrier thread to avoid recursive use of thread-locals
824+
vthread.executeOnCarrierThread(() -> {
825+
System.out.println(vthread);
826+
for (StackWalker.StackFrame frame : stack) {
827+
System.out.format(" %s%n", frame.toStackTraceElement());
828+
}
829+
return null;
830+
});
831+
} catch (Exception e) {
832+
throw new InternalError(e);
833+
}
834+
}
835+
}
836+
837+
private static class StackWalkerHolder {
838+
static final StackWalker STACK_WALKER = StackWalker.getInstance();
839+
}
791840
}

‎src/java.base/share/classes/java/lang/VirtualThread.java

+75-50
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import java.security.PrivilegedAction;
3030
import java.util.Locale;
3131
import java.util.Objects;
32+
import java.util.concurrent.Callable;
3233
import java.util.concurrent.CountDownLatch;
3334
import java.util.concurrent.Executor;
3435
import java.util.concurrent.Executors;
@@ -40,7 +41,6 @@
4041
import java.util.concurrent.RejectedExecutionException;
4142
import java.util.concurrent.ScheduledExecutorService;
4243
import java.util.concurrent.ScheduledThreadPoolExecutor;
43-
import jdk.internal.event.ThreadSleepEvent;
4444
import jdk.internal.event.VirtualThreadEndEvent;
4545
import jdk.internal.event.VirtualThreadPinnedEvent;
4646
import jdk.internal.event.VirtualThreadStartEvent;
@@ -216,7 +216,7 @@ private void runContinuation() {
216216
cont.run();
217217
} finally {
218218
if (cont.isDone()) {
219-
afterTerminate(/*executed*/ true);
219+
afterTerminate();
220220
} else {
221221
afterYield();
222222
}
@@ -411,6 +411,20 @@ private void switchToVirtualThread(VirtualThread vthread, boolean notifyJvmti) {
411411
}
412412
}
413413

414+
/**
415+
* Executes the given value returning task on the current carrier thread.
416+
*/
417+
@ChangesCurrentThread
418+
<V> V executeOnCarrierThread(Callable<V> task) throws Exception {
419+
assert Thread.currentThread() == this;
420+
boolean notifyJvmti = switchToCarrierThread();
421+
try {
422+
return task.call();
423+
} finally {
424+
switchToVirtualThread(this, notifyJvmti);
425+
}
426+
}
427+
414428
/**
415429
* Unmounts this virtual thread, invokes Continuation.yield, and re-mounts the
416430
* thread when continued. When enabled, JVMTI must be notified from this method.
@@ -470,13 +484,22 @@ private void afterYield() {
470484
}
471485
}
472486

487+
/**
488+
* Invoked after the thread terminates execution. It notifies anyone
489+
* waiting for the thread to terminate.
490+
*/
491+
private void afterTerminate() {
492+
afterTerminate(true, true);
493+
}
494+
473495
/**
474496
* Invoked after the thread terminates (or start failed). This method
475497
* notifies anyone waiting for the thread to terminate.
476498
*
499+
* @param notifyContainer true if its container should be notified
477500
* @param executed true if the thread executed, false if it failed to start
478501
*/
479-
private void afterTerminate(boolean executed) {
502+
private void afterTerminate(boolean notifyContainer, boolean executed) {
480503
assert (state() == TERMINATED) && (carrierThread == null);
481504

482505
if (executed) {
@@ -490,13 +513,13 @@ private void afterTerminate(boolean executed) {
490513
termination.countDown();
491514
}
492515

493-
if (executed) {
494-
// notify container if thread executed
516+
// notify container
517+
if (notifyContainer) {
495518
threadContainer().onExit(this);
496-
497-
// clear references to thread locals
498-
clearReferences();
499519
}
520+
521+
// clear references to thread locals
522+
clearReferences();
500523
}
501524

502525
/**
@@ -516,9 +539,12 @@ void start(ThreadContainer container) {
516539
setThreadContainer(container);
517540

518541
// start thread
542+
boolean addedToContainer = false;
519543
boolean started = false;
520-
container.onStart(this); // may throw
521544
try {
545+
container.onStart(this); // may throw
546+
addedToContainer = true;
547+
522548
// scoped values may be inherited
523549
inheritScopedValueBindings(container);
524550

@@ -528,8 +554,7 @@ void start(ThreadContainer container) {
528554
} finally {
529555
if (!started) {
530556
setState(TERMINATED);
531-
container.onExit(this);
532-
afterTerminate(/*executed*/ false);
557+
afterTerminate(addedToContainer, /*executed*/false);
533558
}
534559
}
535560
}
@@ -558,14 +583,21 @@ void park() {
558583
return;
559584

560585
// park the thread
586+
boolean yielded = false;
561587
setState(PARKING);
562588
try {
563-
if (!yieldContinuation()) {
564-
// park on the carrier thread when pinned
565-
parkOnCarrierThread(false, 0);
566-
}
589+
yielded = yieldContinuation(); // may throw
567590
} finally {
568-
assert (Thread.currentThread() == this) && (state() == RUNNING);
591+
assert (Thread.currentThread() == this)
592+
&& ((yielded && state() == RUNNING) ^ (!yielded && state() == PARKING));
593+
if (state() != RUNNING) {
594+
setState(RUNNING);
595+
}
596+
}
597+
598+
// park on the carrier thread when pinned
599+
if (!yielded) {
600+
parkOnCarrierThread(false, 0);
569601
}
570602
}
571603

@@ -589,14 +621,17 @@ void parkNanos(long nanos) {
589621
if (nanos > 0) {
590622
long startTime = System.nanoTime();
591623

592-
boolean yielded;
624+
boolean yielded = false;
593625
Future<?> unparker = scheduleUnpark(this::unpark, nanos);
594626
setState(PARKING);
595627
try {
596-
yielded = yieldContinuation();
628+
yielded = yieldContinuation(); // may throw
597629
} finally {
598630
assert (Thread.currentThread() == this)
599-
&& (state() == RUNNING || state() == PARKING);
631+
&& ((yielded && state() == RUNNING) ^ (!yielded && state() == PARKING));
632+
if (state() != RUNNING) {
633+
setState(RUNNING);
634+
}
600635
cancel(unparker);
601636
}
602637

@@ -618,10 +653,15 @@ void parkNanos(long nanos) {
618653
* @param nanos the waiting time in nanoseconds
619654
*/
620655
private void parkOnCarrierThread(boolean timed, long nanos) {
621-
assert state() == PARKING;
656+
assert state() == RUNNING;
622657

623-
var pinnedEvent = new VirtualThreadPinnedEvent();
624-
pinnedEvent.begin();
658+
VirtualThreadPinnedEvent event;
659+
try {
660+
event = new VirtualThreadPinnedEvent();
661+
event.begin();
662+
} catch (OutOfMemoryError e) {
663+
event = null;
664+
}
625665

626666
setState(PINNED);
627667
try {
@@ -639,7 +679,13 @@ private void parkOnCarrierThread(boolean timed, long nanos) {
639679
// consume parking permit
640680
setParkPermit(false);
641681

642-
pinnedEvent.commit();
682+
if (event != null) {
683+
try {
684+
event.commit();
685+
} catch (OutOfMemoryError e) {
686+
// ignore
687+
}
688+
}
643689
}
644690

645691
/**
@@ -715,7 +761,7 @@ void tryYield() {
715761
assert Thread.currentThread() == this;
716762
setState(YIELDING);
717763
try {
718-
yieldContinuation();
764+
yieldContinuation(); // may throw
719765
} finally {
720766
assert Thread.currentThread() == this;
721767
if (state() != RUNNING) {
@@ -725,30 +771,6 @@ void tryYield() {
725771
}
726772
}
727773

728-
/**
729-
* Sleep the current virtual thread for the given sleep time.
730-
*
731-
* @param nanos the maximum number of nanoseconds to sleep
732-
* @throws InterruptedException if interrupted while sleeping
733-
*/
734-
void sleepNanos(long nanos) throws InterruptedException {
735-
assert Thread.currentThread() == this;
736-
if (nanos >= 0) {
737-
if (ThreadSleepEvent.isTurnedOn()) {
738-
ThreadSleepEvent event = new ThreadSleepEvent();
739-
try {
740-
event.time = nanos;
741-
event.begin();
742-
doSleepNanos(nanos);
743-
} finally {
744-
event.commit();
745-
}
746-
} else {
747-
doSleepNanos(nanos);
748-
}
749-
}
750-
}
751-
752774
/**
753775
* Sleep the current thread for the given sleep time (in nanoseconds). If
754776
* nanos is 0 then the thread will attempt to yield.
@@ -758,9 +780,12 @@ void sleepNanos(long nanos) throws InterruptedException {
758780
* will consume the parking permit so this method makes available the parking
759781
* permit after the sleep. This may be observed as a spurious, but benign,
760782
* wakeup when the thread subsequently attempts to park.
783+
*
784+
* @param nanos the maximum number of nanoseconds to sleep
785+
* @throws InterruptedException if interrupted while sleeping
761786
*/
762-
private void doSleepNanos(long nanos) throws InterruptedException {
763-
assert nanos >= 0;
787+
void sleepNanos(long nanos) throws InterruptedException {
788+
assert Thread.currentThread() == this && nanos >= 0;
764789
if (getAndClearInterrupt())
765790
throw new InterruptedException();
766791
if (nanos == 0) {

‎src/java.base/share/classes/java/util/concurrent/Executors.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import java.util.Collection;
4747
import java.util.List;
4848
import java.util.concurrent.atomic.AtomicInteger;
49-
import jdk.internal.javac.PreviewFeature;
5049
import jdk.internal.ref.CleanerFactory;
5150
import sun.security.util.SecurityConstants;
5251

@@ -249,9 +248,8 @@ public static ExecutorService newCachedThreadPool(ThreadFactory threadFactory) {
249248
* @param threadFactory the factory to use when creating new threads
250249
* @return a new executor that creates a new Thread for each task
251250
* @throws NullPointerException if threadFactory is null
252-
* @since 19
251+
* @since 21
253252
*/
254-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
255253
public static ExecutorService newThreadPerTaskExecutor(ThreadFactory threadFactory) {
256254
return ThreadPerTaskExecutor.create(threadFactory);
257255
}
@@ -265,10 +263,8 @@ public static ExecutorService newThreadPerTaskExecutor(ThreadFactory threadFacto
265263
* that creates virtual threads.
266264
*
267265
* @return a new executor that creates a new virtual Thread for each task
268-
* @throws UnsupportedOperationException if preview features are not enabled
269-
* @since 19
266+
* @since 21
270267
*/
271-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)
272268
public static ExecutorService newVirtualThreadPerTaskExecutor() {
273269
ThreadFactory factory = Thread.ofVirtual().factory();
274270
return newThreadPerTaskExecutor(factory);

‎src/java.base/share/classes/jdk/internal/misc/PreviewFeatures.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private PreviewFeatures() {
3737
* {@return true if preview features are enabled, otherwise false}
3838
*/
3939
public static boolean isEnabled() {
40-
return true; // FIXME: return true until test environment ready
40+
return ENABLED;
4141
}
4242

4343
/**

‎src/java.base/share/classes/jdk/internal/vm/Continuation.java

-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
package jdk.internal.vm;
2727

28-
import jdk.internal.misc.PreviewFeatures;
2928
import jdk.internal.misc.Unsafe;
3029
import jdk.internal.vm.annotation.DontInline;
3130
import jdk.internal.vm.annotation.IntrinsicCandidate;
@@ -34,9 +33,7 @@
3433
import java.lang.invoke.MethodHandles;
3534
import java.lang.invoke.VarHandle;
3635
import java.util.EnumSet;
37-
import java.util.Map;
3836
import java.util.Set;
39-
import java.util.concurrent.ConcurrentHashMap;
4037
import java.util.function.Supplier;
4138
import jdk.internal.access.JavaLangAccess;
4239
import jdk.internal.access.SharedSecrets;
@@ -50,7 +47,6 @@ public class Continuation {
5047
private static final JavaLangAccess JLA = SharedSecrets.getJavaLangAccess();
5148
static {
5249
ContinuationSupport.ensureSupported();
53-
PreviewFeatures.ensureEnabled();
5450

5551
StackChunk.init(); // ensure StackChunk class is initialized
5652

‎src/java.base/share/native/include/jni.h

+1
Original file line numberDiff line numberDiff line change
@@ -1992,6 +1992,7 @@ JNI_OnUnload(JavaVM *vm, void *reserved);
19921992
#define JNI_VERSION_10 0x000a0000
19931993
#define JNI_VERSION_19 0x00130000
19941994
#define JNI_VERSION_20 0x00140000
1995+
#define JNI_VERSION_21 0x00150000
19951996

19961997
#ifdef __cplusplus
19971998
} /* extern "C" */

‎src/java.se/share/data/jdwp/jdwp.spec

-8
Original file line numberDiff line numberDiff line change
@@ -2156,10 +2156,6 @@ JDWP "Java(tm) Debug Wire Protocol"
21562156
)
21572157
)
21582158
(Command IsVirtual=15
2159-
"<b>IsVirtual is a preview API of the Java platform.</b> "
2160-
"<em>Preview features may be removed in a future release, or upgraded to "
2161-
"permanent features of the Java platform.</em> Since JDWP version 19."
2162-
"<p>"
21632159
"Determine if a thread is a "
21642160
"<a href=../../api/java.base/java/lang/Thread.html#virtual-threads>virtual thread</a>."
21652161
(Out
@@ -2537,10 +2533,6 @@ JDWP "Java(tm) Debug Wire Protocol"
25372533
)
25382534
)
25392535
(Alt PlatformThreadsOnly=13
2540-
"<b>PlatformThreadsOnly is a preview API of the Java platform.</b> "
2541-
"<em>Preview features may be removed in a future release, or upgraded to "
2542-
"permanent features of the Java platform.</em> Since JDWP version 19."
2543-
"<p>"
25442536
"For thread start and thread end events, restrict the "
25452537
"events so they are only sent for platform threads."
25462538
)

‎src/jdk.incubator.concurrent/share/classes/jdk/incubator/concurrent/StructuredTaskScope.java

-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import java.util.concurrent.TimeUnit;
4747
import java.util.concurrent.locks.ReentrantLock;
4848
import java.util.function.Function;
49-
import jdk.internal.misc.PreviewFeatures;
5049
import jdk.internal.misc.ThreadFlock;
5150

5251
/**
@@ -335,11 +334,8 @@ public StructuredTaskScope(String name, ThreadFactory factory) {
335334
*
336335
* <p> This constructor is equivalent to invoking the 2-arg constructor with a name
337336
* of {@code null} and a thread factory that creates virtual threads.
338-
*
339-
* @throws UnsupportedOperationException if preview features are not enabled
340337
*/
341338
public StructuredTaskScope() {
342-
PreviewFeatures.ensureEnabled();
343339
this.factory = Thread.ofVirtual().factory();
344340
this.flock = ThreadFlock.open(null);
345341
}

‎src/jdk.jdi/share/classes/com/sun/jdi/ThreadReference.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
import java.util.List;
2929
import com.sun.jdi.event.EventSet;
30-
import jdk.internal.javac.PreviewFeature;
3130

3231
/**
3332
* A thread object from the target VM.
@@ -516,9 +515,8 @@ void forceEarlyReturn(Value value) throws InvalidTypeException,
516515
* @implSpec
517516
* The default implementation throws {@code UnsupportedOperationException}.
518517
*
519-
* @since 19
518+
* @since 21
520519
*/
521-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS, reflective = true)
522520
default boolean isVirtual() {
523521
throw new UnsupportedOperationException("Method not implemented");
524522
}

‎src/jdk.jdi/share/classes/com/sun/jdi/request/ThreadDeathRequest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import com.sun.jdi.event.EventQueue;
3030
import com.sun.jdi.event.EventSet;
3131
import com.sun.jdi.event.ThreadDeathEvent;
32-
import jdk.internal.javac.PreviewFeature;
3332

3433
/**
3534
* Request for notification when a thread terminates in the target VM.
@@ -70,9 +69,8 @@ public interface ThreadDeathRequest extends EventRequest {
7069
* @throws InvalidRequestStateException if this request is currently
7170
* enabled or has been deleted
7271
*
73-
* @since 19
72+
* @since 21
7473
*/
75-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS, reflective = true)
7674
default void addPlatformThreadsOnlyFilter() {
7775
throw new UnsupportedOperationException("Method not implemented");
7876
}

‎src/jdk.jdi/share/classes/com/sun/jdi/request/ThreadStartRequest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import com.sun.jdi.event.EventQueue;
3030
import com.sun.jdi.event.EventSet;
3131
import com.sun.jdi.event.ThreadStartEvent;
32-
import jdk.internal.javac.PreviewFeature;
3332

3433
/**
3534
* Request for notification when a thread starts execution in the target VM.
@@ -70,9 +69,8 @@ public interface ThreadStartRequest extends EventRequest {
7069
* @throws InvalidRequestStateException if this request is currently
7170
* enabled or has been deleted
7271
*
73-
* @since 19
72+
* @since 21
7473
*/
75-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS, reflective = true)
7674
default void addPlatformThreadsOnlyFilter() {
7775
throw new UnsupportedOperationException("Method not implemented");
7876
}

‎src/jdk.jdi/share/classes/com/sun/tools/example/debug/tty/TTYResources.java

-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,6 @@ public Object[][] getContents() {
477477
" connect to target VM using named connector with listed argument values\n" +
478478
" -dbgtrace [flags] print info for debugging {0}\n" +
479479
" -trackallthreads Track all threads, including virtual threads.\n" +
480-
" Virtual threads are a preview feature of the Java platform.\n" +
481480
" -tclient run the application in the HotSpot(TM) Client Compiler\n" +
482481
" -tserver run the application in the HotSpot(TM) Server Compiler\n" +
483482
" -R<option> forward <option> to debuggee process if launched by jdb, otherwise ignored\n" +

‎src/jdk.jdi/share/classes/com/sun/tools/jdi/resources/jdi.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sun.quote = Character used to combine space-delimited text into a single command
4545
sun.quote.label = Quote
4646
sun.vm_exec = Name of the Java VM launcher
4747
sun.vm_exec.label = Launcher
48-
sun.include_virtualthreads = List of all threads includes virtual threads as well as platform threads. Virtual threads are a preview feature of the Java platform.
48+
sun.include_virtualthreads = List of all threads includes virtual threads as well as platform threads.
4949
sun.include_virtualthreads.label = Include Virtual Threads
5050
sun.description = Launches target using Sun Java VM command line and attaches to it
5151
generic_attaching.address = Address to which to attach for VM connections

‎src/jdk.jdwp.agent/share/native/libjdwp/debugInit.c

-1
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,6 @@ printUsage(void)
827827
"onuncaught=y|n debug on any uncaught? n\n"
828828
"timeout=<timeout value> for listen/attach in milliseconds n\n"
829829
"includevirtualthreads=y|n List of all threads includes virtual threads as well as platform threads.\n"
830-
" Virtual threads are a preview feature of the Java platform.\n"
831830
" n\n"
832831
"mutf8=y|n output modified utf-8 n\n"
833832
"quiet=y|n control over terminal messages n\n"));

‎src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedThread.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
package jdk.jfr.consumer;
2727

2828
import jdk.jfr.internal.consumer.ObjectContext;
29-
import jdk.internal.javac.PreviewFeature;
3029

3130
/**
3231
* A recorded thread.
@@ -113,9 +112,8 @@ public long getId() {
113112
/**
114113
* {@return {@code true} if this is a virtual Thread, {@code false} otherwise}
115114
*
116-
* @since 19
115+
* @since 21
117116
*/
118-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS, reflective = true)
119117
public boolean isVirtual() {
120118
return getTyped("virtual", Boolean.class, Boolean.FALSE);
121119
}

‎src/jdk.management/share/classes/com/sun/management/HotSpotDiagnosticMXBean.java

+3-12
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
import java.io.IOException;
2929
import java.lang.management.PlatformManagedObject;
30-
import jdk.internal.javac.PreviewFeature;
3130

3231
/**
3332
* Diagnostic management interface for the HotSpot Virtual Machine.
@@ -147,31 +146,23 @@ public interface HotSpotDiagnosticMXBean extends PlatformManagedObject {
147146
* access to the file or {@link java.lang.management.ManagementPermission
148147
* ManagementPermission("control")} is denied
149148
* @throws UnsupportedOperationException if this operation is not supported
150-
* @since 19
149+
* @since 21
151150
*/
152-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS, reflective = true)
153151
default void dumpThreads(String outputFile, ThreadDumpFormat format) throws IOException {
154152
throw new UnsupportedOperationException();
155153
}
156154

157155
/**
158156
* Thread dump format.
159-
* @since 19
157+
* @since 21
160158
*/
161-
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS, reflective = true)
162159
public static enum ThreadDumpFormat {
163160
/**
164161
* Plain text format.
165162
*/
166163
TEXT_PLAIN,
167164
/**
168-
* JSON (JavaScript Object Notation) format
169-
* (<a href="https://tools.ietf.org/html/rfc8259">RFC 8259</a>).
170-
*
171-
* <p> <a href="doc-files/threadDump.schema.json">threadDump.schema.json</a>
172-
* describes the thread dump format in draft
173-
* <a href="https://tools.ietf.org/html/draft-json-schema-language-02">
174-
* JSON Schema Language version 2</a>.
165+
* JSON (JavaScript Object Notation) format.
175166
*/
176167
JSON,
177168
}

‎test/hotspot/jtreg/native_sanity/JniVersion.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
*/
2828
public class JniVersion {
2929

30-
public static final int JNI_VERSION_20 = 0x00140000;
30+
public static final int JNI_VERSION_21 = 0x00150000;
3131

3232
public static void main(String... args) throws Exception {
3333
System.loadLibrary("JniVersion");
3434
int res = getJniVersion();
35-
if (res != JNI_VERSION_20) {
35+
if (res != JNI_VERSION_21) {
3636
throw new Exception("Unexpected value returned from getJniVersion(): 0x" + Integer.toHexString(res));
3737
}
3838
}

‎test/jdk/ProblemList.txt

-7
Original file line numberDiff line numberDiff line change
@@ -784,10 +784,3 @@ java/awt/event/MouseEvent/SpuriousExitEnter/SpuriousExitEnter.java 8254841 macos
784784
java/awt/Focus/AppletInitialFocusTest/AppletInitialFocusTest1.java 8256289 windows-x64
785785
java/awt/FullScreen/TranslucentWindow/TranslucentWindow.java 8258103 linux-all
786786
java/awt/Focus/FrameMinimizeTest/FrameMinimizeTest.java 8016266 linux-x64
787-
788-
############################################################################
789-
790-
# Loom, fibers branch
791-
792-
java/lang/Thread/virtual/PreviewFeaturesNotEnabled.java 0000000 generic-all
793-
jdk/incubator/concurrent/StructuredTaskScope/PreviewFeaturesNotEnabled.java 0000000 generic-all

‎test/jdk/java/lang/Thread/virtual/PreviewFeaturesNotEnabled.java

-112
This file was deleted.

‎test/jdk/java/lang/Thread/virtual/ThreadAPI.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@ void testSleep3(ThrowingRunnable sleeper) throws Exception {
12471247
VThreadRunner.run(() -> {
12481248
long start = millisTime();
12491249
sleeper.run();
1250-
expectDuration(start, /*min*/900, /*max*/4000);
1250+
expectDuration(start, /*min*/900, /*max*/20_000);
12511251
});
12521252
}
12531253

@@ -1337,7 +1337,7 @@ void testSleep6() throws Exception {
13371337

13381338
long start = millisTime();
13391339
Thread.sleep(1000);
1340-
expectDuration(start, /*min*/900, /*max*/4000);
1340+
expectDuration(start, /*min*/900, /*max*/20_000);
13411341

13421342
// check that parking permit was not consumed
13431343
LockSupport.park();
@@ -1354,7 +1354,7 @@ void testSleep7() throws Exception {
13541354
try {
13551355
long start = millisTime();
13561356
Thread.sleep(1000);
1357-
expectDuration(start, /*min*/900, /*max*/4000);
1357+
expectDuration(start, /*min*/900, /*max*/20_000);
13581358
} catch (Exception e) {
13591359
exc.set(e);
13601360
}
@@ -1382,7 +1382,7 @@ void testSleep8() throws Exception {
13821382
synchronized (lock) {
13831383
Thread.sleep(1000);
13841384
}
1385-
expectDuration(start, /*min*/900, /*max*/4000);
1385+
expectDuration(start, /*min*/900, /*max*/20_000);
13861386
});
13871387
}
13881388

‎test/jdk/jdk/incubator/concurrent/StructuredTaskScope/PreviewFeaturesNotEnabled.java

-53
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.