about summary refs log tree commit diff
path: root/library/std/src/sys/process/unix/mod.rs
blob: ee8fd8b2ca3c6a218738eb088e96b3cd5d6d5c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#[cfg_attr(any(target_os = "espidf", target_os = "horizon", target_os = "nuttx"), allow(unused))]
mod common;

cfg_if::cfg_if! {
    if #[cfg(target_os = "fuchsia")] {
        mod fuchsia;
        use fuchsia as imp;
    } else if #[cfg(target_os = "vxworks")] {
        mod vxworks;
        use vxworks as imp;
    } else if #[cfg(any(target_os = "espidf", target_os = "horizon", target_os = "vita", target_os = "nuttx"))] {
        mod unsupported;
        use unsupported as imp;
        pub use unsupported::output;
    } else {
        mod unix;
        use unix as imp;
    }
}

pub use imp::{ExitStatus, ExitStatusError, Process};

pub use self::common::{Command, CommandArgs, ExitCode, Stdio, StdioPipes};
pub use crate::ffi::OsString as EnvKey;