more useful options | |
PerlMonks |
Re: Re: controling the num of fork sessionsby mikfire (Deacon) |
on Nov 27, 2000 at 19:51 UTC ( [id://43497]=note: print w/replies, xml ) | Need Help?? |
A nice solution, but I would suggest ( as I almost always do
to this kind of question ) a few improvements.
Why are you going through all this pain with REAPERs and counters? Handle the child's death yourself in the main loop of the code. This obviates some complexity and also gets around perl's rarely ( honestly, I have never seen this interupt problem in about 6 years of perl programming, but that is merely anecdotal ) seen interupt problems. What I would suggest ( and have used several times ) is a loop like this: There is some complexity here - I was using this to seriously abuse some cycles :) The if() portion merely checks to see if all the children have been spawned. If they haven't, spawn another off and log the creation into a hash. If all the children have been spawned, poll the system every 1/2 second until one dies. I make sure I have a real pid, dropping out of the loop if not, and remove that entry from the tracking hash. This hash can be used to log when a child has died and what it was doing. Spawn another child off and loop again. Because I am handling the deaths myself and not waiting for quasi-mystical signals, even if 100 children die at the same time, each child will remain in the process table until I have processed it. I can then be certain that I will spawn 100 more children off, no matter how or when they die. Oh. This loop was actually run as a child process - my loop exitted when the signal handler set $again. You can replace this with a variety of exit conditions - timeouts, all the children have been reaped, etc.
In Section
Seekers of Perl Wisdom
|
|