Skip to content

Commit

Permalink
Rollup merge of rust-lang#22783 - alexcrichton:deprecate-taskpool, r=…
Browse files Browse the repository at this point in the history
…alexcrichton

 Rather than stabilize on the current API, we're going to punt this
concern to crates.io, to allow for faster iteration.

[breaking-change]
  • Loading branch information
Manishearth committed Feb 25, 2015
2 parents 9692f3b + 27f8708 commit 24fc50d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/libstd/sync/task_pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

//! Abstraction of a thread pool for basic parallelism.
#![unstable(feature = "std_misc",
reason = "the semantics of a failing task and whether a thread is \
re-attached to a thread pool are somewhat unclear, and the \
utility of this type in `std::sync` is questionable with \
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")]

use core::prelude::*;

Expand Down

0 comments on commit 24fc50d

Please sign in to comment.