Searched refs:pipe (Results 1 – 1 of 1) sorted by relevance
431 let mut pipe: [i32; 2] = [0; 2]; in execute() localVariable432 libc::pipe2(pipe.as_mut_ptr(), libc::O_CLOEXEC); in execute()433 stdout = Some(RedirectStdout::from(pipe[0])); in execute()437 libc::dup2(pipe[1], libc::STDOUT_FILENO); in execute()443 let mut pipe: [i32; 2] = [0; 2]; in execute() localVariable444 libc::pipe2(pipe.as_mut_ptr(), libc::O_CLOEXEC); in execute()445 stdout = Some(RedirectStdout::from(pipe[0])); in execute()