ax-task 0.8.2

OS-independent IRQ-safe SMP task scheduling core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Runqueue-current ownership, runtime accounting, and switch-tail state.

mod accounting;
mod current;
mod handoff;

pub(crate) use accounting::DispatchCharge;
pub(crate) use current::{
    CurrentClassState, CurrentDispatch, CurrentRemotePublication, DispatchRole, SchedulerPolicyRef,
    SchedulerThreadRef,
};
pub(crate) use handoff::{PreviousSwitchDisposition, PreviousSwitchOwnership, SwitchHandoff};