HomeSort by: relevance | last modified time | path
    Searched defs:childPipe (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/make/
meta.c 1613 static int childPipe[2];
1631 if (pipe(childPipe) < 0)
1634 (void)fcntl(childPipe[0], F_SETFD, FD_CLOEXEC);
1635 (void)fcntl(childPipe[1], F_SETFD, FD_CLOEXEC);
1642 if (dup2(childPipe[1], STDOUT_FILENO) < 0
1655 close(childPipe[1]); /* child side */
1656 outfd = childPipe[0];
meta.c 1613 static int childPipe[2];
1631 if (pipe(childPipe) < 0)
1634 (void)fcntl(childPipe[0], F_SETFD, FD_CLOEXEC);
1635 (void)fcntl(childPipe[1], F_SETFD, FD_CLOEXEC);
1642 if (dup2(childPipe[1], STDOUT_FILENO) < 0
1655 close(childPipe[1]); /* child side */
1656 outfd = childPipe[0];

Completed in 41 milliseconds