Searched refs:childpid (Results 1 - 4 of 4) sorted by relevance

/netbsd-6-1-5-RELEASE/libexec/lfs_cleanerd/
H A Dcoalesce.c365 static pid_t childpid; local
371 if (childpid) {
372 if (waitpid(childpid, NULL, WNOHANG) == childpid)
373 childpid = 0;
375 if (childpid && kill(childpid, 0) >= 0) {
385 childpid = fork();
386 if (childpid < 0) {
389 } else if (childpid
[all...]
/netbsd-6-1-5-RELEASE/sbin/dump/
H A Dtape.c577 int childpid; local
593 childpid = fork();
594 if (childpid < 0) {
598 if (childpid != 0) {
609 tapeno+1, parentpid, childpid);
611 while ((waitforpid = wait(&status)) != childpid)
613 parentpid, childpid, waitforpid);
616 childpid, status&0xFF);
622 msg("Child %d finishes X_FINOK\n", childpid);
625 msg("Child %d finishes X_ABORT\n", childpid);
[all...]
/netbsd-6-1-5-RELEASE/tests/fs/common/
H A Dfstest_nfs.c82 pid_t childpid; local
109 switch ((childpid = fork())) {
152 args->ta_childpid = childpid;
H A Dfstest_puffs.c250 pid_t childpid; local
273 switch ((childpid = fork())) {
316 args->pta_childpid = childpid;

Completed in 134 milliseconds