Home | History | Annotate | Download | only in Scripts

Lines Matching refs:pid

121         my $pid;
124 ($pid, $tmpFile) = forkAndCompileFiles(@{$job}, $options);
126 print STDERR "####### Spawned child with PID $pid and tmpFile $tmpFile ##########\n" if $debug;
127 push(@children, $pid);
170 my $pid = fork();
171 die "Fork failed" unless defined($pid);
173 unless ($pid) {
185 return ($pid, $tmpFile);
206 print STDERR "######## Child with PID $deceased finished ###########\n" if $debug;