Home
last modified time | relevance | path

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

/NovaShell/src/
H A Dparser.rs431 let mut pipe: [i32; 2] = [0; 2]; in execute() localVariable
432 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() localVariable
444 libc::pipe2(pipe.as_mut_ptr(), libc::O_CLOEXEC); in execute()
445 stdout = Some(RedirectStdout::from(pipe[0])); in execute()