| commit | c3b617538fa0e406edafe0b0b8fd41f82ed95696 | [log] [tgz] |
|---|---|---|
| author | James Farrell <[email protected]> | Tue May 21 15:03:47 2024 +0000 |
| committer | Automerger Merge Worker <[email protected]> | Tue May 21 15:03:47 2024 +0000 |
| tree | 2a2eb733cce8095698db0a7fed47abfecb96f25f | |
| parent | 7e80e1fc034cd67e8da47b9979a06cd6145eb504 [diff] | |
| parent | 74d38d2598d83dda6e98fe75cb0371923cd0b4bd [diff] |
Update Android.bp by running cargo_embargo am: 8d0b64b901 am: 74d38d2598 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/command-fds/+/3095247 Change-Id: Iab6a1641cc200c3181414bfcac01bc41f156b3f4 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.