use super::wait_wake::{futex_wait, futex_wake, futex_wake_all};
use crate::sync::RawMutex;
use core::sync::atomic::{AtomicU32, Ordering::Relaxed};
use core::time::Duration;
use lock_api::RawMutex as _;
pub type MovableCondvar = Condvar;
pub struct Condvar {
futex: AtomicU32,
}
impl Condvar {
#[inline]
pub const fn new() -> Self {
Self {
futex: AtomicU32::new(0),
}
}
#[inline]
pub unsafe fn init(&mut self) {}
#[inline]
pub unsafe fn destroy(&self) {}
pub unsafe fn notify_one(&self) {
self.futex.fetch_add(1, Relaxed);
futex_wake(&self.futex);
}
pub unsafe fn notify_all(&self) {
self.futex.fetch_add(1, Relaxed);
futex_wake_all(&self.futex);
}
pub unsafe fn wait(&self, mutex: &RawMutex) {
self.wait_optional_timeout(mutex, None);
}
pub unsafe fn wait_timeout(&self, mutex: &RawMutex, timeout: Duration) -> bool {
self.wait_optional_timeout(mutex, Some(timeout))
}
unsafe fn wait_optional_timeout(&self, mutex: &RawMutex, timeout: Option<Duration>) -> bool {
let futex_value = self.futex.load(Relaxed);
mutex.unlock();
let r = futex_wait(&self.futex, futex_value, timeout);
mutex.lock();
r
}
}