actually from your code it seems that the parent process will ALWAYS wait for the child process to exit before going to the next file. Your main while loop forks a child (load_file) and then waits for it to exit (reap_children) before going to the next iteration of the while loop.
Try this instead (untested)
use strict; # I'm hinting that this should be part of the (error chec
+king you took out)
my @pids;
while (1) {
# Loop other processing here.
push(@pids,load_file($this_file));
}
reap_children(@pids);
sub load_file() {
my $childProcess;
$childProcess = fork();
unless($childProcess) {
# Child process so lets exec the loader.
exec("loader $this_file");
exit 0;
}
return $childProcess;
}
sub reap_children() {
foreach(@_) {
wait($_);
}
}
spawn all the children keeping tack of their pids as you spawn them...then just wait in turn for all the children to die at the end.
HTH
Update: I should post before being caffeinated...the waitpid shouldn't block as tye pointed out to me. So, I'm not quite sure where it's going wrong....maybe a solaris issue? I've used the above technique before and not had any problems...
/\/\averick
perl -l -e "eval pack('h*','072796e6470272f2c5f2c5166756279636b672');"
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.