Searched refs:pipefd (Results 1 – 1 of 1) sorted by relevance
209 int pipefd[2]; variable212 if (pipe2(pipefd, flags) != 0) {219 if (pipe(pipefd) != 0) {224 if (fcntl(pipefd[0], F_SETFD, FD_CLOEXEC) != 0 ||225 fcntl(pipefd[1], F_SETFD, FD_CLOEXEC) != 0) {226 close(pipefd[0]);227 close(pipefd[1]);232 if (fcntl(pipefd[0], F_SETFL, O_NONBLOCK) != 0 ||233 fcntl(pipefd[1], F_SETFL, O_NONBLOCK) != 0) {234 close(pipefd[0]);[all …]