]> git.lizzy.rs Git - rust.git/blob - src/libcore/task/mod.rs
Add riscv64gc-unknown-none-elf target
[rust.git] / src / libcore / task / mod.rs
1 #![unstable(feature = "futures_api",
2             reason = "futures in libcore are unstable",
3             issue = "50547")]
4
5 //! Types and Traits for working with asynchronous tasks.
6
7 mod poll;
8 pub use self::poll::Poll;
9
10 mod wake;
11 pub use self::wake::{Waker, LocalWaker, UnsafeWake};