kill -s SIGCHLD
The above is the code for killing any zombie process, But my question is:
Is there any way by which a Zombie process manifest itself??
kill -s SIGCHLD The above is the code for killing any zombie process, But
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
steenhulthin is correct, but until it’s moved someone may as well answer it here. A zombie process exists between the time that a child process terminates and the time that the parent calls one of the
wait()functions to get its exit status.A simple example: