mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
make 'checkdied' in runtests.pl more robust
This commit is contained in:
parent
3daa54d636
commit
5b809a3104
@ -258,8 +258,11 @@ $ENV{'CURL_CA_BUNDLE'}=undef;
|
||||
sub checkdied {
|
||||
use POSIX ":sys_wait_h";
|
||||
my $pid = $_[0];
|
||||
if(not defined $pid || $pid <= 0) {
|
||||
return 0;
|
||||
}
|
||||
my $rc = waitpid($pid, &WNOHANG);
|
||||
return $rc == $pid;
|
||||
return ($rc == $pid)?1:0;
|
||||
}
|
||||
|
||||
#######################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user