OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pipefds
(Results
1 - 1
of
1
) sorted by relevancy
/src/usr.bin/make/
main.c
1752
int
pipefds
[2];
local
1766
if (pipe(
pipefds
) == -1) {
1777
(void)close(
pipefds
[0]);
1778
(void)dup2(
pipefds
[1], STDOUT_FILENO);
1779
(void)close(
pipefds
[1]);
1789
(void)close(
pipefds
[1]); /* No need for the writing half */
1796
bytes_read = read(
pipefds
[0], result, sizeof result);
1803
(void)close(
pipefds
[0]); /* Close the input side of the pipe. */
Completed in 20 milliseconds
Indexes created Sun Feb 22 16:20:20 UTC 2026