leodos_libcfs/os/mod.rs
1//! OSAL (Operating System Abstraction Layer) interface.
2//!
3//! This module provides safe, idiomatic Rust wrappers for the OSAL API, which
4//! abstracts away the details of the underlying real-time operating system (RTOS).
5
6pub mod alloc;
7pub mod app;
8pub mod fs;
9pub mod heap;
10pub mod id;
11pub mod module;
12pub mod net;
13pub mod queue;
14pub mod shell;
15pub mod sync;
16pub mod task;
17pub mod time;
18pub mod timebase;
19pub mod timer;
20pub(crate) mod util;
21pub mod version;