Print info about all current threads. Includes name, status, isSuspended, isAtBreakpoint.
()
| 781 | * isSuspended, isAtBreakpoint. |
| 782 | */ |
| 783 | public synchronized void printThreads() { |
| 784 | if (!isPaused()) { |
| 785 | return; |
| 786 | } |
| 787 | System.out.println("threads:"); |
| 788 | for (ThreadReference t : vm().allThreads()) { |
| 789 | printThread(t); |
| 790 | } |
| 791 | } |
| 792 | |
| 793 | |
| 794 | /** |
nothing calls this directly
no test coverage detected