Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Dmeta.c1627 static int childPipe[2]; variable
1645 if (pipe(childPipe) < 0) in meta_compat_start()
1648 (void)fcntl(childPipe[0], F_SETFD, FD_CLOEXEC); in meta_compat_start()
1649 (void)fcntl(childPipe[1], F_SETFD, FD_CLOEXEC); in meta_compat_start()
1656 if (dup2(childPipe[1], STDOUT_FILENO) < 0 in meta_compat_child()
1669 close(childPipe[1]); /* child side */ in meta_compat_parent()
1670 outfd = childPipe[0]; in meta_compat_parent()