memkit 0.1.0-beta.1

Deterministic, intent-driven memory allocation for systems requiring predictable performance
Documentation
//! Memory barriers.

/// A memory barrier for synchronization.
pub struct MkBarrier {
    // TODO: Implement barrier
}

impl MkBarrier {
    /// Create a new barrier.
    pub fn new() -> Self {
        Self {}
    }

    /// Wait on the barrier.
    pub fn wait(&self) {
        // TODO: Implement
    }
}

impl Default for MkBarrier {
    fn default() -> Self {
        Self::new()
    }
}