Files
rust/library/std/src/sys/mod.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
450 B
Rust
Raw Normal View History

/// The PAL (platform abstraction layer) contains platform-specific abstractions
/// for implementing the features in the other submodules, e.g. UNIX file
/// descriptors.
mod pal;
mod personality;
2024-01-18 20:33:29 +01:00
pub mod cmath;
2024-02-15 17:03:59 +01:00
pub mod locks;
2024-01-18 20:33:29 +01:00
pub mod os_str;
2024-02-08 12:41:46 +01:00
pub mod path;
#[allow(dead_code)]
#[allow(unused_imports)]
pub mod thread_local;
2024-01-18 20:33:29 +01:00
// FIXME(117276): remove this, move feature implementations into individual
// submodules.
pub use pal::*;