SMS Executive Thread States
The following counters pertain to SMS Executive thread states.
- Running Thread Count
- The number of running threads. These are threads that are not blocked inside the Yield() functions. When this counter is associated with a single thread, instead of an entire process, its value will be zero or one.
- Sleeping Thread Count
- The number of threads blocked in Yield() functions, waiting for conditions specified by the blocked threads. When this counter is associated with a single thread, instead of an entire process, its value is zero or one.
- Yielding Thread Count
- The number of threads blocked in Yield() functions, ready to run but not allowed to because of the need to limit running threads. When this counter is associated with a single thread, instead of an entire process, its value is zero or one.