commit | e1c60ef5bd49024f9d9c350394a7d1204a19a749 | [log] [tgz] |
---|---|---|
author | Matthew Maurer <mmaurer@google.com> | Thu May 26 10:44:53 2022 -0700 |
committer | Matthew Maurer <mmaurer@google.com> | Thu May 26 10:44:53 2022 -0700 |
tree | 2c812dedc9353fa9c0e1450d83f5999c218f028f | |
parent | bad4ff2b87bc73e96d382ce6ef5d9d97189a6e1a [diff] |
Update TEST_MAPPING Test: None Bug: 233924440 Change-Id: I678a7e37c2aa90732a4a8977eb5ed35c9c30afef
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.