Lines Matching refs:pid
412 for my $pid (keys %incomplete_jobs) {
413 my $job = $incomplete_jobs{$pid};
417 delete $incomplete_jobs{$pid}
1812 " pid:", $job->pid(), "\n");
3080 my $pid = shift;
3103 my $testpid = $pid;
3307 my $pid = $$;
3308 if(-e "/proc/$pid/stat") {
3309 my $fh = FileHandle->new("</proc/$pid/stat");
4024 for my $pid (@children) {
4025 kill 9, $pid;
4026 waitpid($pid,0);
4027 delete $Global::unkilled_children{$pid};
4666 my $pid = fork();
4667 if($pid) {
4668 $Global::sshmaster{$pid} ||= 1;
5239 sub pid { subroutine
5311 for my $pid (@family_pids) {
5312 if(kill 0, $pid) {
5314 kill $signal, $pid;
5337 my $pid = $self->pid();
5342 my @more = ($pid);
5853 my $pid;
5879 $pid = ::open3($stdin_fh, ">&OUT", ">&ERR", $Global::shell, "-c", $command) ||
5891 $pid = ::open3("<&IN", ">&OUT", ">&ERR", $Global::shell, "-c", $command) ||
5904 $pid = ::open3("<&IN", ">&OUT", ">&ERR", $Global::shell, "-c", $command) ||
5906 $Global::tty_taken = $pid;
5913 $pid = ::open3(::gensym, ">&OUT", ">&ERR", $Global::shell, "-c", $command) ||
5918 if($pid) {
5922 $job->set_pid($pid);
5924 $Global::running{$job->pid()} = $job;
7736 my ($pid, $host) = ($1, $2);