diff options
| author | joboet <jonasboettiger@icloud.com> | 2025-09-16 15:48:43 +0200 |
|---|---|---|
| committer | joboet <jonasboettiger@icloud.com> | 2025-09-21 19:45:46 +0200 |
| commit | 87a00f67ba4c8148e6aa2e1768025b9d51a0fa8b (patch) | |
| tree | f1ef39f35d44e02ccbb151a001d65dd0676b9b9f /library/std/src/sys/process/unix/vxworks.rs | |
| parent | 6710835ae739ca326441ff6c63d24fb123858300 (diff) | |
| download | rust-87a00f67ba4c8148e6aa2e1768025b9d51a0fa8b.tar.gz rust-87a00f67ba4c8148e6aa2e1768025b9d51a0fa8b.zip | |
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/vxworks.rs')
| -rw-r--r-- | library/std/src/sys/process/unix/vxworks.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/sys/process/unix/vxworks.rs b/library/std/src/sys/process/unix/vxworks.rs index b9298f5fa44..346ca6d74c9 100644 --- a/library/std/src/sys/process/unix/vxworks.rs +++ b/library/std/src/sys/process/unix/vxworks.rs @@ -4,6 +4,7 @@ use libc::{self, RTP_ID, c_char, c_int}; use super::common::*; use crate::io::{self, ErrorKind}; use crate::num::NonZero; +use crate::process::StdioPipes; use crate::sys::{cvt, thread}; use crate::{fmt, sys}; |
