Views:

showprocess

Displays the status of the processes that are currently running.
Syntax:
show process [top | stack | itrace | trace] [pid]
View
Normal
Parameters
top: Displays the status of the processes that are currently running and system related processes
stack: Print a stack trace of a running process
itrace: Trace the library call
trace: Trace system calls and signals
pid: The process id number
Examples:
To display the status of the processes that are currently running:
show process
To display the stack trace of process 1233:
show process stack 1233
To display the system call of process 1233:
show process trace 1233
To display the library call of process 1233:
show process itrace 1233