localq 0.0.2

No-std async primitives for `!Send` tasks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]

extern crate alloc;

pub use lock::LocalLock;
pub use rw_lock::RwLock;
pub use waiter_queue::{Waiter, WaiterQueue};

mod lock;
pub mod mpsc;
mod rw_lock;
mod waiter_queue;