commit | 57c96998b8e9d3a463a75f283e70b6da5de46e9f | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:43:23 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:43:23 2023 +0000 |
tree | 11e18b4dd80bdcc297ab5c3bcea47ba342ca555d | |
parent | 3ba9a39dc8e92591ac4a728afd22e06a0aeabda8 [diff] | |
parent | 227eeb228a8062775d3a3e9ce89f7e8bd68fbc67 [diff] |
Snap for 10453563 from 227eeb228a8062775d3a3e9ce89f7e8bd68fbc67 to mainline-adservices-release Change-Id: I5953e0a829d3926491be38aed5e38e0d8200075b
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.