We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3fad4f9 + 81065e4 commit 68fe2f4Copy full SHA for 68fe2f4
src/libstd/sync/task_pool.rs
@@ -10,11 +10,11 @@
10
11
//! Abstraction of a thread pool for basic parallelism.
12
13
-#![unstable(feature = "std_misc",
14
- reason = "the semantics of a failing task and whether a thread is \
15
- re-attached to a thread pool are somewhat unclear, and the \
16
- utility of this type in `std::sync` is questionable with \
17
- respect to the jobs of other primitives")]
+#![deprecated(since = "1.0.0",
+ reason = "This kind of API needs some time to bake in \
+ crates.io. This functionality is available through \
+ https://crates.io/crates/threadpool")]
+#![unstable(feature = "std_misc")]
18
19
use core::prelude::*;
20
0 commit comments