Hi,
I could help myself. At least this works with my testing programms.
- I need to wait for the $pid instead of -1
- I can check $? for the exit status
- I need to check the result of waitpid for >0 instead of == -1
So now the relevant code section reades likes this:
if ($pid == 0) { # child
print " child: exec\n";
exec("$prg arguments");
exit;
} else { # parent
print " parent: wait\n";
my $time = time();
my $kill_flag = 1;
while (time() - $time < $timeout) {
sleep 1;
my $kid = waitpid($pid,WNOHANG);
my $exit_value = $? >> 8;
if ($kid > 0) {
$kill_flag = 0;
$return_code = !$exit_value;
last;
}
}
if($kill_flag) {
kill(9, $pid);
$return_code = 0;
}
}
return $return_code;
Thanks for reading anyway :-)
| Regards... |
Stefan
|
|
you begin bashing the string with a +42 regexp of confusion
|
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.