commit | 227eeb228a8062775d3a3e9ce89f7e8bd68fbc67 | [log] [tgz] |
---|---|---|
author | Matthew Maurer <[email protected]> | Thu Mar 09 18:06:13 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Mar 09 18:06:13 2023 +0000 |
tree | 11e18b4dd80bdcc297ab5c3bcea47ba342ca555d | |
parent | 26d5a67cc5ffd657322a32a1a4b560c89a6f5243 [diff] | |
parent | 2ad7d7e492c97bb8617172fc87413e666b66aa88 [diff] |
Make command-fds available to product and vendor am: 79b81d52e8 am: c29c02a0f9 am: de20bb223f am: 2ad7d7e492 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/command-fds/+/2476333 Change-Id: I89f503ed1563d6b5df77fa94c89bd44739ea6e4c 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.