What would be the process state in a multi threaded process, in which threads are in different states (running, waiting, blocked etc)
Tell me more
×
Computer Science Stack Exchange is a question and answer site for
students, researchers and practitioners of computer science. It's 100% free, no registration required.
|
|
In short, the lifecycle of thread does not interfere with the lifecycle of a process. Processes and threads have different execution cycles; threads will execute and die while their process will continue to run until it gets a exit, truncate or die call due to normal execution (or in case of deadlock handling).
|
||||
|