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
13
14
15
16
//! Single-owner notification capabilities for hard IRQ producers.

pub use crate::{
    runtime::service::reclaim::quiesce_irq_wait,
    sync::irq::{
        cell::{
            IrqNotifyResult, IrqRegisterResult, IrqWaitCell, IrqWaitDrain, IrqWaitRegistration,
            IrqWaitToken,
        },
        worker::IrqWorkerWaiter,
    },
};

pub(crate) mod worker;

pub(crate) mod cell;