Open tianyupu opened 12 years ago
sleep 10 & ps
After 10 seconds the sleep process has finished but running ps again shows it as <defunct>. It's probably not had waitpid called on it.
<defunct>
waitpid
This doesn't appear to be an issue if the background operator & is not involved.
&
After 10 seconds the sleep process has finished but running ps again shows it as
<defunct>
. It's probably not hadwaitpid
called on it.This doesn't appear to be an issue if the background operator
&
is not involved.