kithara-platform 0.0.1-alpha5

Cross-platform primitives (sync, time, thread) for native and wasm32.
Documentation
1
2
3
4
5
6
7
8
9
pub(crate) mod condvar;
pub(crate) mod mutex;
pub(crate) mod rwlock;

pub use ::loom::sync::atomic;
pub(crate) use condvar::Condvar;
pub(crate) use mutex::{Mutex, MutexGuard};

pub use crate::system::ownership::{Arc, OnceLock, Weak};