Skip to content

Commit 6a0bb25

Browse files
committedApr 28, 2022
Merge
2 parents 742af29 + 318df91 commit 6a0bb25

File tree

3 files changed

+16
-24
lines changed

3 files changed

+16
-24
lines changed
 

‎src/java.management/share/classes/java/lang/management/ThreadMXBean.java

+11-19
Original file line numberDiff line numberDiff line change
@@ -590,17 +590,13 @@ public interface ThreadMXBean extends PlatformManagedObject {
590590
public void setThreadCpuTimeEnabled(boolean enable);
591591

592592
/**
593-
* Finds cycles of threads that are in deadlock waiting to acquire
594-
* object monitors. That is, threads that are blocked waiting to enter a
595-
* synchronization block or waiting to reenter a synchronization block
596-
* after an {@link Object#wait Object.wait} call,
597-
* where each thread owns one monitor while
598-
* trying to obtain another monitor already held by another thread
599-
* in a cycle.
600-
* This method returns the IDs of the platform threads that are in
601-
* deadlock. The IDs of virtual threads that are in deadlock are not
602-
* included. The IDs of platform threads that are in a cycle with
603-
* virtual threads may or may not be included.
593+
* Finds cycles of platform threads that are in deadlock waiting to acquire
594+
* object monitors. That is, platform threads that are blocked waiting to
595+
* enter a synchronization block or waiting to reenter a synchronization block
596+
* after an {@link Object#wait Object.wait} call, where each platform thread
597+
* owns one monitor while trying to obtain another monitor already held by
598+
* another platform thread in a cycle. Cycles that include virtual threads
599+
* are not found by this method.
604600
* <p>
605601
* More formally, a thread is <em>monitor deadlocked</em> if it is
606602
* part of a cycle in the relation "is waiting for an object monitor
@@ -645,14 +641,10 @@ public interface ThreadMXBean extends PlatformManagedObject {
645641
* Finds cycles of platform threads that are in deadlock waiting to
646642
* acquire object monitors or
647643
* <a href="LockInfo.html#OwnableSynchronizer">ownable synchronizers</a>.
648-
* Threads are <em>deadlocked</em> in a cycle waiting for a lock of
649-
* these two types if each thread owns one lock while
650-
* trying to acquire another lock already held
651-
* by another thread in the cycle.
652-
* This method returns the IDs of the platform threads that are in
653-
* deadlock. The IDs of virtual threads that are in deadlock are not
654-
* included. The IDs of platform threads that are in a cycle with
655-
* virtual threads may or may not be included.
644+
* Platform threads are <em>deadlocked</em> in a cycle waiting for a lock of
645+
* these two types if each thread owns one lock while trying to acquire
646+
* another lock already held by another platform thread in the cycle.
647+
* Cycles that include virtual threads are not found by this method.
656648
* <p>
657649
* This method is designed for troubleshooting use, but not for
658650
* synchronization control. It might be an expensive operation.

‎src/java.management/share/classes/sun/management/ThreadImpl.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -439,12 +439,11 @@ protected void setThreadAllocatedMemoryEnabled(boolean enable) {
439439
/**
440440
* Returns an array of thread identifiers for the threads in the given
441441
* array. Returns {@code null} if {@code threads} is null or the array
442-
* of threads only includes carrier threads.
442+
* of threads is empty.
443443
*/
444444
private long[] threadsToIds(Thread[] threads) {
445445
if (threads != null) {
446446
long[] tids = Stream.of(threads)
447-
.filter(t -> !(t instanceof jdk.internal.misc.CarrierThread))
448447
.mapToLong(Thread::threadId)
449448
.toArray();
450449
if (tids.length > 0) {

‎test/jdk/java/lang/management/ThreadMXBean/VirtualThreadDeadlocks.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323

2424
/**
2525
* @test
26-
* @summary Test ThredMXBean.findDeadlockedThreads with deadlocked virtual threads
26+
* @summary Test ThredMXBean.findMonitorDeadlockedThreads with cycles of
27+
* platform and virtual threads in deadlock
2728
* @compile --enable-preview -source ${jdk.version} VirtualThreadDeadlocks.java
2829
* @run main/othervm --enable-preview VirtualThreadDeadlocks PP
2930
* @run main/othervm --enable-preview VirtualThreadDeadlocks PV
@@ -74,8 +75,8 @@ public static void main(String[] args) throws Exception {
7475
Thread.sleep(2000);
7576

7677
ThreadMXBean bean = ManagementFactory.getPlatformMXBean(ThreadMXBean.class);
77-
long[] deadlockedThreads = sorted(bean.findDeadlockedThreads());
78-
System.out.println("findDeadlockedThreads => " + Arrays.toString(deadlockedThreads));
78+
long[] deadlockedThreads = sorted(bean.findMonitorDeadlockedThreads());
79+
System.out.println("findMonitorDeadlockedThreads => " + Arrays.toString(deadlockedThreads));
7980

8081
// deadlocks involving virtual threads are not detected
8182
long[] expectedThreads = (!thread1.isVirtual() && !thread2.isVirtual())

0 commit comments

Comments
 (0)
Please sign in to comment.