Searched refs:stderr_pipe (Results 1 - 2 of 2) sorted by relevance

/freebsd-9.3-release/contrib/cvs/src/
H A Drun.c432 int stderr_pipe[2]; local
442 if (pipe (stderr_pipe) < 0)
455 if (close (stderr_pipe[1]) < 0)
458 while ((inbytes = read (stderr_pipe[0], buf, sizeof buf)) != 0)
501 if (close (stderr_pipe[0]) < 0)
504 if (stderr_pipe[1] != STDERR_FILENO)
506 if (dup2 (stderr_pipe[1], STDERR_FILENO) < 0)
508 if (close (stderr_pipe[1]) < 0)
H A Dserver.c2778 int stderr_pipe[2];
2783 * interleaved with data from stdout_pipe or stderr_pipe).
2794 stderr_pipe[0] = -1;
2795 stderr_pipe[1] = -1;
2836 if (pipe (stderr_pipe) < 0)
2930 if (dup2 (stderr_pipe[1], STDERR_FILENO) < 0)
2935 close (stderr_pipe[0]);
2936 close (stderr_pipe[1]);
3023 if (stderr_pipe[0] > num_to_check)
3024 num_to_check = stderr_pipe[
2766 int stderr_pipe[2]; local
[all...]

Completed in 111 milliseconds