Files
drone_core
drone_ctypes
drone_riscv
futures
futures_channel
futures_core
futures_io
futures_sink
futures_task
futures_util
pin_project_lite
pin_utils
proc_macro_nested
typenum
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! The Threads module.
//!
//! **NOTE** This module documentation should be viewed as a continuation of
//! [the `drone_core` documentation](drone_core::thr).

pub mod prelude;

mod init;

#[doc(no_inline)]
pub use drone_core::thr::*;

pub use self::init::{init, ThrsInitToken};

/// Defines a thread pool driven by CLINT (Core Local Interrupter).
///
/// See [the module level documentation](self) for details.
#[doc(inline)]
pub use drone_riscv_macros::thr_clint as clint;