use crate::processor;
use core::{
ptr,
task::{RawWaker, RawWakerVTable, Waker},
};
static VTABLE: RawWakerVTable = RawWakerVTable::new(clone, wake, wake, drop);
pub struct WakeRoot(());
#[allow(clippy::unused_self)]
impl WakeRoot {
pub fn new() -> Self {
Self(())
}
pub fn wait() {
processor::wait_for_event();
}
pub fn to_waker(&self) -> Waker {
unsafe { Waker::from_raw(raw_waker()) }
}
}
fn raw_waker() -> RawWaker {
RawWaker::new(ptr::null(), &VTABLE)
}
unsafe fn clone(_data: *const ()) -> RawWaker {
raw_waker()
}
unsafe fn wake(_data: *const ()) {
#[cfg(any(
cortexm_core = "cortexm3_r0p0",
cortexm_core = "cortexm3_r1p0",
cortexm_core = "cortexm3_r1p1",
cortexm_core = "cortexm3_r2p0",
))]
processor::send_event();
}