commit | 02638f16574f1137fc3a986e4c598fe41e4ab5d8 | [log] [tgz] |
---|---|---|
author | David Brazdil <[email protected]> | Tue Jan 24 18:55:31 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jan 24 18:55:31 2023 +0000 |
tree | ae8689a5f20e522a8aacc073a501a9cf469708d7 | |
parent | 57e29589eb9d1afa83e1933f9ae6bce56a1e6aa9 [diff] | |
parent | 13de538c845a9aa09e2f193a90d5435a4548ebe0 [diff] |
Update TEST_MAPPING am: f63734e47b am: 12963c84ec am: 13de538c84 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/command-fds/+/2399059 Change-Id: If2b6e33350d1a564c101a0bc7f981d7180e7832e Signed-off-by: Automerger Merge Worker <[email protected]>
A library for passing arbitrary file descriptors when spawning child processes.
use command_fds::{CommandFdExt, FdMapping}; use std::fs::File; use std::os::unix::io::AsRawFd; use std::process::Command; // Open a file. let file = File::open("Cargo.toml").unwrap(); // Prepare to run `ls -l /proc/self/fd` with some FDs mapped. let mut command = Command::new("ls"); command.arg("-l").arg("/proc/self/fd"); command .fd_mappings(vec![ // Map `file` as FD 3 in the child process. FdMapping { parent_fd: file.as_raw_fd(), child_fd: 3, }, // Map this process's stdin as FD 5 in the child process. FdMapping { parent_fd: 0, child_fd: 5, }, ]) .unwrap(); // Spawn the child process. let mut child = command.spawn().unwrap(); child.wait().unwrap();
Licensed under the Apache License, Version 2.0.
If you want to contribute to the project, see details of how we accept contributions.