Print info about a thread. Includes name, status, isSuspended, isAtBreakpoint. @param t the thread to print info about
(ThreadReference t)
| 797 | * @param t the thread to print info about |
| 798 | */ |
| 799 | protected void printThread(ThreadReference t) { |
| 800 | System.out.println(t.name()); |
| 801 | System.out.println(" is suspended: " + t.isSuspended()); |
| 802 | System.out.println(" is at breakpoint: " + t.isAtBreakpoint()); |
| 803 | System.out.println(" status: " + threadStatusToString(t.status())); |
| 804 | } |
| 805 | |
| 806 | |
| 807 | /** |
no test coverage detected