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 args;
13pub mod backtrace;
14pub mod cmath;
15pub mod exit_guard;
16pub mod fd;
17pub mod fs;
18pub mod io;
19pub mod net;
20pub mod os_str;
21pub mod path;
22pub mod process;
23pub mod random;
24pub mod stdio;
25pub mod sync;
26pub mod thread_local;
27
28// FIXME(117276): remove this, move feature implementations into individual
29// submodules.
30pub use pal::*;