Skip to main content

ax_task/sync/
irq.rs

1//! Single-owner notification capabilities for hard IRQ producers.
2
3pub use crate::{
4    runtime::service::reclaim::quiesce_irq_wait,
5    sync::irq::{
6        cell::{
7            IrqNotifyResult, IrqRegisterResult, IrqWaitCell, IrqWaitDrain, IrqWaitRegistration,
8            IrqWaitToken,
9        },
10        worker::IrqWorkerWaiter,
11    },
12};
13
14pub(crate) mod worker;
15
16pub(crate) mod cell;