Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

What are the process states in Unix?

9 like 0 dislike
Hello
What are the process states in Unix?
please reply me. i am waiting for your reply.
Thanx
asked 1 year ago by eagles11 (179,830 points)

1 Answer

1 like 0 dislike
 
Best answer
When a program forks and the child finishes before the parent, the kernel still keeps some of its information about the child in case the parent might need it - for example, the parent may need to check the child's exit status. To be able to get this information, the parent calls `wait()'; In the interval between the child terminating and the parent calling `wait()', the child is said to be a `zombie' (If you do `ps', the child will have a `Z' in its status field to indicate this.)
answered 1 year ago by DBA-boss (120,990 points)

Related questions

9 like 0 dislike
1 answer
7 like 0 dislike
1 answer
9 like 0 dislike
1 answer
asked 1 year ago by DBA-boss (120,990 points)
9 like 0 dislike
1 answer
6 like 0 dislike
1 answer