Home
last modified time | relevance | path

Searched refs:pid2 (Results 1 – 6 of 6) sorted by relevance

/mirbsd/src/gnu/usr.bin/perl/t/op/
Dgetpid.t38 my $pid2 : shared = 0;
41 new threads( sub { ($pid2, $ppid2) = ($$, getppid()); } ) -> join();
43 is($pid, $pid2, 'pids');
Dgetppid.t36 my $pid2 = fork; defined $pid2 or die "fork: $!\n";
37 if ($pid2) {
/mirbsd/src/gnu/usr.bin/perl/t/io/
Dopenpid.t47 ok( $pid2 = open(FH2, "$cmd2 |"), ' second' );
51 print "# pids were $pid1, $pid2, $pid3, $pid4\n";
68 $kill_cnt = kill $killsig, $pid2, $pid3;
/mirbsd/src/gnu/usr.bin/binutils/libiberty/testsuite/
Dtest-pexecute.c384 int pid1, pid2; in main() local
405 pid2 = pexecute ("./test-pexecute", subargv, "test-pexecute", "temp", in main()
407 if (pid2 < 0) in main()
419 if (pwait (pid2, &status, 0) < 0) in main()
/mirbsd/src/gnu/usr.bin/perl/
Dutil.c2127 int pid2, status; in Perl_my_popen_list() local
2132 pid2 = wait4pid(pid, &status, 0); in Perl_my_popen_list()
2133 } while (pid2 == -1 && errno == EINTR); in Perl_my_popen_list()
2276 int pid2, status; in Perl_my_popen() local
2281 pid2 = wait4pid(pid, &status, 0); in Perl_my_popen()
2282 } while (pid2 == -1 && errno == EINTR); in Perl_my_popen()
2583 Pid_t pid2; in Perl_my_pclose() local
2622 pid2 = wait4pid(pid, &status, 0); in Perl_my_pclose()
2623 } while (pid2 == -1 && errno == EINTR); in Perl_my_pclose()
2633 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status)); in Perl_my_pclose()
/mirbsd/src/gnu/usr.bin/binutils/gdb/
Daix-thread.c608 int pid1, pid2; in ptid_cmp() local