commit | 62a3e5a0700220706c1a014c15dc69386282df9d | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri May 26 10:17:35 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri May 26 10:17:35 2023 +0000 |
tree | 11e18b4dd80bdcc297ab5c3bcea47ba342ca555d | |
parent | 26d5a67cc5ffd657322a32a1a4b560c89a6f5243 [diff] | |
parent | 2ad7d7e492c97bb8617172fc87413e666b66aa88 [diff] |
Snap for 10209341 from 2ad7d7e492c97bb8617172fc87413e666b66aa88 to mainline-healthfitness-release Change-Id: I4038b0dee8d369bd66e526644c294d1a79c6c806
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.