2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00
This commit is contained in:
k-nasa 2020-03-22 19:25:40 +09:00
parent 322911142c
commit 11ee2a8985

View file

@ -192,5 +192,8 @@ cfg_unstable! {
pub(crate) mod waker_set; pub(crate) mod waker_set;
pub(crate) use waker_set::WakerSet; pub(crate) use waker_set::WakerSet;
pub(crate) mod spin_lock;
pub(crate) use spin_lock::Spinlock; cfg_default! {
pub(crate) mod spin_lock;
pub(crate) use spin_lock::Spinlock;
}