Threads
The Threads tab displays all thread groups in the current debugging process. These thread groups are expandable hierarchies; each group containing other thread groups or single threads, which in turn contain
CallStack
andLocals
nodes.![]()
- The
CallStack
node can be expanded to show the current hierarchy of method calls made during execution.- The
Locals
node displays local variables and their current values in the context of the current thread. You can expand these nodes to see the object sub-structure.If the process you are debugging has more than one thread, all threads and thread groups appear in the Threads tab showing a thread name and current status (such as "running", "at breakpoint", "cond. waiting"and "suspended"). Suspended threads and threads at breakpoint display all "current" system information.
The Debugger Window displays the following properties for each running thread:
Name
- Thread name (according to the thread class).State
- Status of the thread, such asRunning
,Cond. waiting
, and so on.Class
- Name of the class in which the thread is suspended.Method
- Name of the method in which the thread is suspended.Line Number
- Current line in the thread.Stack Depth
- Number of methods in the call stack.Suspended
- IfTrue
, the thread is suspended.
Contents | Prev | Next | Index |