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

/netbsd-current/usr.bin/make/
H A Dmeta.c1617 static int childPipe[2]; variable
1635 if (pipe(childPipe) < 0)
1638 (void)fcntl(childPipe[0], F_SETFD, FD_CLOEXEC);
1639 (void)fcntl(childPipe[1], F_SETFD, FD_CLOEXEC);
1646 if (dup2(childPipe[1], STDOUT_FILENO) < 0
1659 close(childPipe[1]); /* child side */
1660 outfd = childPipe[0];

Completed in 87 milliseconds