I am not handling SIGCHLD
in my code. Still my process is removed immediately after termination. I want it to become zombie process.
If I set SIGCHLD
to SIG_DFL
then, will it work? How do I set SIGCHLD
to SIG_DFL
?
I want process to become zombie, so I can read the child status in parent after waitpid
.