summaryrefslogtreecommitdiffstats
path: root/tokio/src/runtime/thread_pool/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/runtime/thread_pool/mod.rs')
-rw-r--r--tokio/src/runtime/thread_pool/mod.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/tokio/src/runtime/thread_pool/mod.rs b/tokio/src/runtime/thread_pool/mod.rs
index d30e8d45..e39695a9 100644
--- a/tokio/src/runtime/thread_pool/mod.rs
+++ b/tokio/src/runtime/thread_pool/mod.rs
@@ -9,9 +9,7 @@ use self::idle::Idle;
mod worker;
pub(crate) use worker::Launch;
-cfg_blocking! {
- pub(crate) use worker::block_in_place;
-}
+pub(crate) use worker::block_in_place;
use crate::loom::sync::Arc;
use crate::runtime::task::{self, JoinHandle};