mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
WL#41890 After review fixes, remove unecessary if's
This commit is contained in:
@ -501,13 +501,6 @@ sub wait_any {
|
|||||||
last if $pid == $ret_pid;
|
last if $pid == $ret_pid;
|
||||||
}
|
}
|
||||||
} while ($ret_pid == 0);
|
} while ($ret_pid == 0);
|
||||||
|
|
||||||
# Special processig of return code
|
|
||||||
# since negative pids are valid
|
|
||||||
if ($ret_pid == 0 or $ret_pid == -1) {
|
|
||||||
print STDERR "wait_any, got invalid pid: $ret_pid\n";
|
|
||||||
return undef;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -522,7 +515,7 @@ sub wait_any {
|
|||||||
# Look it up in "running" table
|
# Look it up in "running" table
|
||||||
my $proc= $running{$ret_pid};
|
my $proc= $running{$ret_pid};
|
||||||
unless (defined $proc){
|
unless (defined $proc){
|
||||||
print STDERR "Could not find pid in running list\n";
|
print STDERR "Could not find pid: $ret_pid in running list\n";
|
||||||
print STDERR "running: ". join(", ", keys(%running)). "\n";
|
print STDERR "running: ". join(", ", keys(%running)). "\n";
|
||||||
return undef;
|
return undef;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user