ThreadState defines a set of all possible execution states for threads. Once a thread is created, it is in at least one of the states until it terminates. Threads created within the common language runtime are initially in the Unstarted state, while external threads that come into the runtime are already in the Running state. An Unstarted thread is transitioned into the Running state by calling Start. Not all combinations of ThreadState values are valid; for example, a thread cannot be in both the Aborted and Unstarted states.
Important Note: |
|---|
There are two thread state enumerations,
System.Threading..::.ThreadState and System.Diagnostics..::.ThreadState. The thread state enumerations are only of interest in a few debugging scenarios. Your code should never use thread state to synchronize the activities of threads.
|
The following table shows the actions that cause a change of state.
Action
|
ThreadState
|
|---|
A thread is created within the common language runtime.
|
Unstarted
|
A thread calls Start
|
Unstarted
|
The thread starts running.
|
Running
|
The thread calls Sleep
|
WaitSleepJoin
|
The thread calls Wait on another object.
|
WaitSleepJoin
|
The thread calls Join on another thread.
|
WaitSleepJoin
|
Another thread calls Interrupt
|
Running
|
Another thread calls Suspend
|
SuspendRequested
|
The thread responds to a Suspend request.
|
Suspended
|
Another thread calls Resume
|
Running
|
Another thread calls Abort
|
AbortRequested
|
The thread responds to a Abort request.
|
Stopped
|
A thread is terminated.
|
Stopped
|
In addition to the states noted above, there is also the Background state, which indicates whether the thread is running in the background or foreground.
A thread can be in more than one state at a given time. For example, if a thread is blocked on a call to Wait, and another thread calls Abort on the blocked thread, the blocked thread will be in both the WaitSleepJoin and the AbortRequested states at the same time. In this case, as soon as the thread returns from the call to Wait or is interrupted, it will receive the ThreadAbortException to begin aborting.
The Thread..::.ThreadState property of a thread provides the current state of a thread. Applications must use a bitmask to determine whether a thread is running. Since the value for Running is zero (0), test whether a thread is running by using C# code such as (myThread.ThreadState & (ThreadState.Stopped | ThreadState.Unstarted)) == 0 or Visual Basic code such as (myThread.ThreadState And (ThreadState.Stopped Or ThreadState.Unstarted)) = 0.