in reply to Re^2: Fork Wait and probably grandchildren
in thread Fork Wait and probably grandchildren

Please consider that I've a Linux bias answering this kind of questions, so don't trust them too much :)

wait basically waits until one of the children exits. It is used to avoid having Zombie processes: if you don't wait() for them, and you go a long time in your parent process before exiting, you'll see these processes in the process list even if they already exited, marked as "zombie" (this means that resources in the kernel associated to the process aren't freed). So, wait is the way by which the parent process acknowledges the kernel of the son's death. It's interesting that this mechanism actually tries to force the programmer not to ignore return values from child processes, much like the good practice of never throwing away return values from functions.

Moreover, wait returns as soon as the first child exits; in the OP's post, (s)he created 8 of them, and had to wait until all of them have exited. According to perldoc -f wait, a call to the wait function returns -1 if, and only if, there are no more children alive(1) - thus the cycle.

(1)Ok, ok, it's not exactly like this. If you happened to set $SIG{'CHLD'} to 'IGNORE', this zombie-ridding happens automatically, and you're likely to have wait always return -1 - but I guess it's not the case with this thread :) Moreover, in this case I would discourage the OP to do that, because (s)he's using wait as a synchronisation mechanism to understand when all the children exited. BTW, this is documented in perldoc perlipc, but I suggest taking a look in perldoc perlport as well.

Flavio (perl -e "print(scalar(reverse('ti.xittelop@oivalf')))")

Don't fool yourself.

Replies are listed 'Best First'.
Re^4: Fork Wait and probably grandchildren
by tlm (Prior) on Apr 05, 2005 at 18:07 UTC

    Thanks. RazorbladeBidet's last post finally knocked some sense into my thick head. When I read your post originally, I didn't catch that the idiom you posted was supposed to appear outside the loop. In retrospect it is pretty obvious. Doh!

    the lowliest monk

    Update: Added clarification.