commit | 6acf7648b16ff1391f8f00523d338a8453618cbe | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue Aug 06 16:54:43 2024 +0000 |
committer | James Farrell <[email protected]> | Tue Aug 06 16:54:43 2024 +0000 |
tree | 40b9b53e2d5296bd94bd96ac55d8b82680ba9c72 | |
parent | 74d38d2598d83dda6e98fe75cb0371923cd0b4bd [diff] |
Update Android.bp by running cargo_embargo Test: ran cargo_embargo Change-Id: Ifc3c6fcaeb59c133c7cb0fdb6cbf93ed66e39ebd
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.