1//! Platform-dependent platform abstraction.
2//!
3//! The `std::sys` module is the abstracted interface through which
4//! `std` talks to the underlying operating system. It has different
5//! implementations for different operating system families, today
6//! just Unix and Windows, and initial support for Redox.
7//!
8//! The centralization of platform-specific code in this module is
9//! enforced by the "platform abstraction layer" tidy script in
10//! `tools/tidy/src/pal.rs`.
11//!
12//! This module is closely related to the platform-independent system
13//! integration code in `std::sys_common`. See that module's
14//! documentation for details.
15//!
16//! In the future it would be desirable for the independent
17//! implementations of this module to be extracted to their own crates
18//! that `std` can link to, thus enabling their implementation
19//! out-of-tree via crate replacement. Though due to the complex
20//! inter-dependencies within `std` that will be a challenging goal to
21//! achieve.
2223#![allow(missing_debug_implementations)]
2425pub mod common;
2627cfg_if::cfg_if! {
28if #[cfg(unix)] {
29mod unix;
30pub use self::unix::*;
31 } else if #[cfg(windows)] {
32mod windows;
33pub use self::windows::*;
34 } else if #[cfg(target_os = "solid_asp3")] {
35mod solid;
36pub use self::solid::*;
37 } else if #[cfg(target_os = "hermit")] {
38mod hermit;
39pub use self::hermit::*;
40 } else if #[cfg(all(target_os = "wasi", target_env = "p2"))] {
41mod wasip2;
42pub use self::wasip2::*;
43 } else if #[cfg(target_os = "wasi")] {
44mod wasi;
45pub use self::wasi::*;
46 } else if #[cfg(target_family = "wasm")] {
47mod wasm;
48pub use self::wasm::*;
49 } else if #[cfg(target_os = "xous")] {
50mod xous;
51pub use self::xous::*;
52 } else if #[cfg(target_os = "uefi")] {
53mod uefi;
54pub use self::uefi::*;
55 } else if #[cfg(all(target_vendor = "fortanix", target_env = "sgx"))] {
56mod sgx;
57pub use self::sgx::*;
58 } else if #[cfg(target_os = "teeos")] {
59mod teeos;
60pub use self::teeos::*;
61 } else if #[cfg(target_os = "zkvm")] {
62mod zkvm;
63pub use self::zkvm::*;
64 } else {
65mod unsupported;
66pub use self::unsupported::*;
67 }
68}
6970cfg_if::cfg_if! {
71// Fuchsia components default to full backtrace.
72if #[cfg(target_os = "fuchsia")] {
73pub const FULL_BACKTRACE_DEFAULT: bool = true;
74 } else {
75pub const FULL_BACKTRACE_DEFAULT: bool = false;
76 }
77}
7879#[cfg(not(target_os = "uefi"))]
80pub type RawOsError = i32;