| commit | 7f8208114def2354f04c1e3965bf81536570e7ac | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Sun Sep 15 07:09:09 2024 +0000 |
| committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Sun Sep 15 07:09:09 2024 +0000 |
| tree | b908699a72eed17ea0d9e4071bbaaff052c38027 | |
| parent | 1ece7467f93b92dbd568d639669da445dc6ece35 [diff] | |
| parent | 34b3af3317df89cbdbbdaf50cd2502fcb9808c62 [diff] |
Snap for 12356763 from 34b3af3317df89cbdbbdaf50cd2502fcb9808c62 to busytown-mac-infra-release Change-Id: I15fc6f546e2f507f2be11746fddb98fb6a149c35
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.