diff options
| author | bors <bors@rust-lang.org> | 2015-03-20 07:12:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-03-20 07:12:39 +0000 |
| commit | 0834bd1b3db4e9c1477871cc962459b11e298234 (patch) | |
| tree | 4a63350e8437a7fb81d9351e29289214908c0b82 /src/libstd/rt | |
| parent | fda8673531c2ecea13c86216f964feb6091b4ade (diff) | |
| parent | 6107e4c0b88d9e22482ed88c52b98c2ec2034bb1 (diff) | |
| download | rust-0834bd1b3db4e9c1477871cc962459b11e298234.tar.gz rust-0834bd1b3db4e9c1477871cc962459b11e298234.zip | |
Auto merge of #23548 - Manishearth:rollup, r=Manishearth
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/mod.rs | 2 | ||||
| -rw-r--r-- | src/libstd/rt/util.rs | 23 |
2 files changed, 1 insertions, 24 deletions
diff --git a/src/libstd/rt/mod.rs b/src/libstd/rt/mod.rs index 90cc189b9a0..5e8abfd0a3f 100644 --- a/src/libstd/rt/mod.rs +++ b/src/libstd/rt/mod.rs @@ -30,7 +30,7 @@ use thunk::Thunk; use usize; // Reexport some of our utilities which are expected by other crates. -pub use self::util::{default_sched_threads, min_stack, running_on_valgrind}; +pub use self::util::{min_stack, running_on_valgrind}; pub use self::unwind::{begin_unwind, begin_unwind_fmt}; // Reexport some functionality from liballoc. diff --git a/src/libstd/rt/util.rs b/src/libstd/rt/util.rs index e72fd7b3320..f1c43a07e6e 100644 --- a/src/libstd/rt/util.rs +++ b/src/libstd/rt/util.rs @@ -58,29 +58,6 @@ pub fn min_stack() -> uint { return amt; } -/// Get's the number of scheduler threads requested by the environment -/// either `RUST_THREADS` or `num_cpus`. -#[allow(deprecated)] -pub fn default_sched_threads() -> uint { - use os; - match env::var("RUST_THREADS") { - Ok(nstr) => { - let opt_n: Option<uint> = nstr.parse().ok(); - match opt_n { - Some(n) if n > 0 => n, - _ => panic!("`RUST_THREADS` is `{}`, should be a positive integer", nstr) - } - } - Err(..) => { - if limit_thread_creation_due_to_osx_and_valgrind() { - 1 - } else { - os::num_cpus() - } - } - } -} - // Indicates whether we should perform expensive sanity checks, including rtassert! // // FIXME: Once the runtime matures remove the `true` below to turn off rtassert, |
