diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-09-21 22:20:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-21 22:20:27 +0200 |
| commit | adfc111fff3598dd24a94da518501ca127c1afd0 (patch) | |
| tree | b3e4579913cdffec38689506b82f04faa3b717af /library/std/src/sys/process/unix/unix.rs | |
| parent | af315d3027ec0a77eedc18b9a82bc43829fe1200 (diff) | |
| parent | 87a00f67ba4c8148e6aa2e1768025b9d51a0fa8b (diff) | |
| download | rust-adfc111fff3598dd24a94da518501ca127c1afd0.tar.gz rust-adfc111fff3598dd24a94da518501ca127c1afd0.zip | |
Rollup merge of #146639 - joboet:shared-stdiopipes, r=Mark-Simulacrum
std: merge definitions of `StdioPipes` All platforms define this structure the same way, so we can just put it in the `process` module directly.
Diffstat (limited to 'library/std/src/sys/process/unix/unix.rs')
| -rw-r--r-- | library/std/src/sys/process/unix/unix.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/sys/process/unix/unix.rs b/library/std/src/sys/process/unix/unix.rs index 11d48878727..7d944f2f7ee 100644 --- a/library/std/src/sys/process/unix/unix.rs +++ b/library/std/src/sys/process/unix/unix.rs @@ -13,6 +13,7 @@ use libc::{gid_t, uid_t}; use super::common::*; use crate::io::{self, Error, ErrorKind}; use crate::num::NonZero; +use crate::process::StdioPipes; use crate::sys::cvt; #[cfg(target_os = "linux")] use crate::sys::pal::linux::pidfd::PidFd; |
