HomeSort by: relevance | last modified time | path
    Searched refs:childpid (Results 1 - 7 of 7) sorted by relevancy

  /src/libexec/lfs_cleanerd/
coalesce.c 424 static pid_t childpid; local
430 if (childpid) {
431 if (waitpid(childpid, NULL, WNOHANG) == childpid)
432 childpid = 0;
434 if (childpid && kill(childpid, 0) >= 0) {
444 childpid = fork();
445 if (childpid < 0) {
448 } else if (childpid == 0)
    [all...]
  /src/sbin/dump/
tape.c 576 int childpid; local
592 childpid = fork();
593 if (childpid < 0) {
597 if (childpid != 0) {
608 tapeno+1, parentpid, childpid);
610 while ((waitforpid = wait(&status)) != childpid)
612 parentpid, childpid, waitforpid);
615 childpid, status&0xFF);
621 msg("Child %d finishes X_FINOK\n", childpid);
624 msg("Child %d finishes X_ABORT\n", childpid);
    [all...]
  /src/tests/fs/lfs/
t_orphan.c 72 pid_t childpid; local
90 if ((childpid = fork()) == 0) {
139 waitpid(childpid, &status, 0);
  /src/external/bsd/ntp/dist/libntp/
work_fork.c 479 int childpid; local
543 childpid = fork();
544 if (-1 == childpid) {
549 if (childpid) {
551 TRACE(1, ("forked worker child (pid %d)\n", childpid));
552 c->pid = childpid;
  /src/tests/fs/common/
fstest_nfs.c 83 pid_t childpid; local
112 switch ((childpid = fork())) {
155 args->ta_childpid = childpid;
fstest_puffs.c 251 pid_t childpid; local
274 switch ((childpid = fork())) {
317 args->pta_childpid = childpid;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
process.d 4413 auto childpid = core.sys.posix.unistd.fork();
4414 if (childpid == 0)
4431 const check = (() @trusted => waitpid(childpid, &status, 0))();

Completed in 47 milliseconds