1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Task notification

mod context;
pub use self::context::ContextExt;

#[cfg_attr(
    feature = "nightly",
    cfg(all(target_has_atomic = "cas", target_has_atomic = "ptr"))
)]
mod atomic_waker;
#[cfg_attr(
    feature = "nightly",
    cfg(all(target_has_atomic = "cas", target_has_atomic = "ptr"))
)]
pub use self::atomic_waker::AtomicWaker;