You could put a simple
waitpid call in your while loop there, just to hang around while there's still a kid out there. I didn't even need the
POSIX module:
while ($forked > 0) {
print "[$forked] ";
last if (waitpid(-1,0) == -1);
sleep 1;
}
That's not a beautiful solution, though. Here's another attempt:
#!/usr/bin/perl -w
use strict;
$|=1;
my %kids;
$SIG{CHLD} = \&REAPER; # set handler for fork
for (1..10) {
my $pid = fork();
die "Fork failed" unless defined $pid;
if ($pid == 0) {
print "Hello $$\n";
sleep 1;
print "Bye $$\n";
exit;
} else {
$kids{$pid} = 1;
print "Started child $pid\n";
}
}
foreach my $kid (keys %kids) {
print "Waiting for [$kid]:\n";
my $val;
do {
$val = waitpid($kid, 0);
} until $val == -1;
delete $kids{$kid};
}
print "Done\n";
exit;
sub REAPER {
my $pid = wait;
$SIG{CHLD} = \&REAPER; # reinstall for sysV (not needed)
print "Finished child process $pid" . ($? ? " with exit $?" : "")
+. "\n";
delete $kids{$pid};
}
Not perfect, but you get the chance to be more specific on what you're waiting for.
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.