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

/freebsd-9.3-release/contrib/bmake/
H A Dmeta.c1328 static int childPipe[2]; variable
1345 if (pipe(childPipe) < 0)
1348 (void)fcntl(childPipe[0], F_SETFD, 1);
1349 (void)fcntl(childPipe[1], F_SETFD, 1);
1356 if (dup2(childPipe[1], 1) < 0 ||
1369 close(childPipe[1]); /* child side */
1370 fp = fdopen(childPipe[0], "r");

Completed in 112 milliseconds