search for: stdin_pid

Displaying 1 result from an estimated 1 matches for "stdin_pid".

Did you mean: stdin_fd
2012 Dec 13
2
[PATCH 1/2] daemon: NFC Use symbolic names in commandrvf
...PIPE_WRITE], STDOUT_FILENO); + dup2 (se_fd[PIPE_WRITE], STDERR_FILENO); + close (so_fd[PIPE_WRITE]); + close (se_fd[PIPE_WRITE]); execvp (argv[0], (void *) argv); perror (argv[0]); @@ -866,15 +870,15 @@ commandrvf (char **stdoutput, char **stderror, int flags, } if (stdin_pid == 0) { /* Child process copying stdin. */ - close (so_fd[0]); - close (so_fd[1]); - close (se_fd[0]); - close (se_fd[1]); + close (so_fd[PIPE_READ]); + close (so_fd[PIPE_WRITE]); + close (se_fd[PIPE_READ]); + close (se_fd[PIPE_WRITE]); - close (...