Expand description
New scheduler implementations with lock-free data structures.
This module provides high-performance schedulers that use lock-free algorithms to minimize contention and improve scalability.
Re-exports§
pub use trait_def::Scheduler;
pub use trait_def::CpuId;
pub use trait_def::priority;
pub use rr::RoundRobinScheduler;
Modules§
- rr
- Round-robin scheduler implementation with lock-free queues.
- trait_
def - Scheduler trait definition for the new lock-free scheduler architecture.