in reply to fork()ing a large process
Now, why does your process appear to wait for some children to die? Well, one possibility is that you have exceeded the maximum number of children your OS allows. That is, if you have a lot of files to process, you may have forked as many children as you are allowed to fork. To figure that out you can keep track of the number of live children and see if that number gets big. The limit on my system is 511.
BTW you can avoid the magic numbers in waitpid if you use POSIX "sys_wait_h";.
HTH, --traveler
Update: I'd never heard about the 2% chance of corruption. I've always followed the Camel's advice about using the signal handler, I guess I've been lucky. Maybe one choice is to do a periodic wait for children using code similar to reap_children. You might also try setting $SIG{CHLD} to SIG_IGN.
Replies are listed 'Best First'. | |
---|---|
(tye)Re2: fork()ing a large process
by tye (Sage) on Nov 29, 2001 at 22:54 UTC | |
by traveler (Parson) on Nov 29, 2001 at 23:40 UTC |