What are the high-level thread states

The high-level thread states are ready, running, waiting, and dead.

Showing Answers 1 - 3 of 3 Answers

The thread states are
1.Ready state-This state signifies that the thread is ready for execution.
2.Running state-A thread in running state has access to the CPU i.e.,the thread is being executed.
3.Waiting state-Here the thread is waits for some action to happen, Once the action happens, the thread reaches its ready state.
4.Dead state-Once the thread finishes its execution it reaches dead state.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions