kithara-platform 0.0.1-alpha3

Cross-platform primitives (sync, time, thread) for native and wasm32.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Flash-side sync primitives: re-import stubs where flash adds no semantics
//! (`Mutex`/`RwLock` — bounded critical sections stay flash-blind by
//! contract), flash-aware primitives where it does (`Condvar`, `Notify`,
//! `mpsc`).

pub(crate) mod condvar;
pub mod mpsc;
pub(crate) mod mutex;
pub(crate) mod notify;
pub(crate) mod rwlock;

pub use condvar::Condvar;
pub use mutex::{Mutex, MutexGuard, NotAvailable};
pub use notify::Notify;
pub use rwlock::{RwLock, RwLockReadGuard, RwLockWriteGuard};

pub use crate::common::gate::{CondvarGate, ThreadGate, WaitGate};