Skip to content

Commit 1488d99

Browse files
committedSep 4, 2020
javadoc improvements
1 parent a42a32f commit 1488d99

File tree

3 files changed

+12
-20
lines changed

3 files changed

+12
-20
lines changed
 

‎make/data/jdwp/jdwp.spec

+2-4
Original file line numberDiff line numberDiff line change
@@ -2141,14 +2141,12 @@ JDWP "Java(tm) Debug Wire Protocol"
21412141
)
21422142
)
21432143
(Command IsVirtual=15
2144-
"Determine if a thread is scheduled by the Java virtual machine "
2145-
"rather than the operating system."
2144+
"Determine if a thread is a virtual thread."
21462145
(Out
21472146
(threadObject thread "The thread object ID.")
21482147
)
21492148
(Reply
2150-
(boolean isVirtual "true if the thread is scheduled by the Java virtual "
2151-
"machine rather than the operating system.")
2149+
(boolean isVirtual "true if the thread is a virtual thread.")
21522150
)
21532151
(ErrorSet
21542152
(Error INVALID_THREAD)

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

+3-10
Original file line numberDiff line numberDiff line change
@@ -1666,17 +1666,10 @@ public static Thread startVirtualThread(Runnable task) {
16661666
}
16671667

16681668
/**
1669-
* Returns {@code true} if this thread scheduled by the Java virtual machine
1670-
* rather than the operating system.
1669+
* Returns {@code true} if this thread is a virtual thread. A virtual thread
1670+
* is scheduled by the Java virtual machine rather than the operating system.
16711671
*
1672-
* <p> Threads that are scheduled by the Java virtual machine do not support
1673-
* all features of Thread. In particular, the Thread is not an <i>active thread</i>
1674-
* in its thread group and so is not enumerated or acted on by thread group
1675-
* operations. In addition it does not support the stop, suspend or resume
1676-
* methods.
1677-
*
1678-
* @return {@code true} if this thread is scheduled by the Java virtual
1679-
* machine rather than the operating system
1672+
* @return {@code true} if this thread is a virtual thread
16801673
*
16811674
* @since 99
16821675
*/

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

+7-6
Original file line numberDiff line numberDiff line change
@@ -474,17 +474,18 @@ void forceEarlyReturn(Value value) throws InvalidTypeException,
474474
IncompatibleThreadStateException;
475475

476476
/**
477-
* Returns {@code true} if the thread is scheduled by the Java virtual machine
478-
* rather than the operating system.
477+
* Returns {@code true} if the thread is a virtual thread. A virtual
478+
* thread is scheduled by the Java virtual machine rather than the
479+
* operating system.
479480
*
480-
* @return true if the thread is scheduled by the Java virtual machine rather
481-
* than the operating system
481+
* @return true if the thread is a virtual thread
482482
*
483-
* @implSpec The default implementation returns false.
483+
* @implSpec
484+
* The default implementation throws {@code UnsupportedOperationException}.
484485
*
485486
* @since 99
486487
*/
487488
default boolean isVirtual() {
488-
return false;
489+
throw new UnsupportedOperationException("Method not implemented");
489490
}
490491
}

0 commit comments

Comments
 (0)
Please sign in to comment.