commit | 1fa1dbad97c00c5369b2e3267cb89578a28e2f0f | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Wed Dec 15 17:27:05 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Dec 15 17:27:05 2021 +0000 |
tree | c41a00e781c37b436293ba79d172b243160cacd4 | |
parent | 7551608250971241e9e918001a53f30b2850857c [diff] | |
parent | dc60a3916610d2a33d95fba4f30111d84f82bb8c [diff] |
Merge "Refresh Android.bp, cargo2android.json, TEST_MAPPING." am: 2c51e94c76 am: 9f1b6052ba am: dc60a39166 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/command-fds/+/1912622 Change-Id: I178a559476eca3aa2bf1a6de91dffb96469d0163
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.