Home
last modified time | relevance | path

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

/coreutils/src/
Dsort.c1041 pipe_fork (int pipefds[2], size_t tries) in pipe_fork()
1050 if (pipe2 (pipefds, O_CLOEXEC) < 0) in pipe_fork()
1092 close (pipefds[0]); in pipe_fork()
1093 close (pipefds[1]); in pipe_fork()
1129 int pipefds[2]; in maybe_create_temp() local
1131 node->pid = pipe_fork (pipefds, MAX_FORK_TRIES_COMPRESS); in maybe_create_temp()
1135 close (pipefds[0]); in maybe_create_temp()
1136 tempfd = pipefds[1]; in maybe_create_temp()
1144 close (pipefds[1]); in maybe_create_temp()
1146 move_fd (pipefds[0], STDIN_FILENO); in maybe_create_temp()
[all …]