Home
last modified time | relevance | path

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

/dragonfly/contrib/bmake/
H A Dmeta.c1644 static int childPipe[2]; variable
1662 if (pipe(childPipe) < 0) in meta_compat_start()
1665 (void)fcntl(childPipe[0], F_SETFD, FD_CLOEXEC); in meta_compat_start()
1666 (void)fcntl(childPipe[1], F_SETFD, FD_CLOEXEC); in meta_compat_start()
1673 if (dup2(childPipe[1], 1) < 0 || dup2(1, 2) < 0) in meta_compat_child()
1685 close(childPipe[1]); /* child side */ in meta_compat_parent()
1686 outfd = childPipe[0]; in meta_compat_parent()