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
10
11
12
13
#[path = "condvar.rs"]
pub(crate) mod condvar;
#[path = "mutex.rs"]
pub(crate) mod mutex;
#[path = "rwlock.rs"]
pub(crate) mod rwlock;

pub use std::sync::atomic;

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

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