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

Method printThreads

java/src/processing/mode/java/Debugger.java:783–791  ·  view source on GitHub ↗

Print info about all current threads. Includes name, status, isSuspended, isAtBreakpoint.

()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 4

isPausedMethod · 0.95
vmMethod · 0.95
printThreadMethod · 0.95
printlnMethod · 0.45

Tested by

no test coverage detected