MCPcopy Index your code
hub / github.com/processing/processing / printThread

Method printThread

java/src/processing/mode/java/Debugger.java:799–804  ·  view source on GitHub ↗

Print info about a thread. Includes name, status, isSuspended, isAtBreakpoint. @param t the thread to print info about

(ThreadReference t)

Source from the content-addressed store, hash-verified

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 /**

Callers 1

printThreadsMethod · 0.95

Calls 2

threadStatusToStringMethod · 0.95
printlnMethod · 0.45

Tested by

no test coverage detected