OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pipefds
(Results
1 - 2
of
2
) sorted by relevancy
/src/usr.bin/make/
main.c
1752
int
pipefds
[2];
local in function:Cmd_Exec
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. */
main.c
1752
int
pipefds
[2];
local in function:Cmd_Exec
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 74 milliseconds
Indexes created Thu Nov 06 21:09:53 GMT 2025