std/sys/
mod.rs

1#![allow(unsafe_op_in_unsafe_fn)]
2
3/// The PAL (platform abstraction layer) contains platform-specific abstractions
4/// for implementing the features in the other submodules, e.g. UNIX file
5/// descriptors.
6mod pal;
7
8mod alloc;
9mod personality;
10
11pub mod anonymous_pipe;
12pub mod backtrace;
13pub mod cmath;
14pub mod exit_guard;
15pub mod fd;
16pub mod fs;
17pub mod io;
18pub mod net;
19pub mod os_str;
20pub mod path;
21pub mod process;
22pub mod random;
23pub mod stdio;
24pub mod sync;
25pub mod thread_local;
26
27// FIXME(117276): remove this, move feature implementations into individual
28//                submodules.
29pub use pal::*;