2024-07-14 16:43:50 -07:00
|
|
|
#![allow(unsafe_op_in_unsafe_fn)]
|
|
|
|
|
|
2024-01-11 20:10:25 +01:00
|
|
|
/// The PAL (platform abstraction layer) contains platform-specific abstractions
|
|
|
|
|
/// for implementing the features in the other submodules, e.g. UNIX file
|
|
|
|
|
/// descriptors.
|
|
|
|
|
mod pal;
|
|
|
|
|
|
2024-07-23 16:10:08 +02:00
|
|
|
mod alloc;
|
2024-01-13 18:30:44 +01:00
|
|
|
mod personality;
|
|
|
|
|
|
2024-06-30 18:23:07 +10:00
|
|
|
pub mod anonymous_pipe;
|
2024-06-16 13:14:01 +02:00
|
|
|
pub mod backtrace;
|
2024-01-18 20:33:29 +01:00
|
|
|
pub mod cmath;
|
2024-07-07 10:44:47 -05:00
|
|
|
pub mod exit_guard;
|
2024-01-18 20:33:29 +01:00
|
|
|
pub mod os_str;
|
2024-02-08 12:41:46 +01:00
|
|
|
pub mod path;
|
2024-08-15 13:28:02 +02:00
|
|
|
pub mod random;
|
2024-03-12 14:55:06 +01:00
|
|
|
pub mod sync;
|
2024-02-28 19:12:29 +01:00
|
|
|
pub mod thread_local;
|
2024-01-18 20:33:29 +01:00
|
|
|
|
2024-01-11 20:10:25 +01:00
|
|
|
// FIXME(117276): remove this, move feature implementations into individual
|
|
|
|
|
// submodules.
|
|
|
|
|
pub use pal::*;
|