@@ -590,17 +590,13 @@ public interface ThreadMXBean extends PlatformManagedObject {
590
590
public void setThreadCpuTimeEnabled (boolean enable );
591
591
592
592
/**
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.
604
600
* <p>
605
601
* More formally, a thread is <em>monitor deadlocked</em> if it is
606
602
* part of a cycle in the relation "is waiting for an object monitor
@@ -645,14 +641,10 @@ public interface ThreadMXBean extends PlatformManagedObject {
645
641
* Finds cycles of platform threads that are in deadlock waiting to
646
642
* acquire object monitors or
647
643
* <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.
656
648
* <p>
657
649
* This method is designed for troubleshooting use, but not for
658
650
* synchronization control. It might be an expensive operation.
0 commit comments