about summary refs log tree commit diff
path: root/src/libstd/rt/mod.rs
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-03-19 18:38:16 -0400
committerManish Goregaokar <manishsmail@gmail.com>2015-03-20 05:36:07 +0530
commit71321ff33fa3fe71cc1df541b3d0547b4e208923 (patch)
treefd701f6e9e786cffe42a7a84bbb949b2e60697fd /src/libstd/rt/mod.rs
parent7cbc42849f7586d3c567d7ac8f202839f9b968e8 (diff)
downloadrust-71321ff33fa3fe71cc1df541b3d0547b4e208923.tar.gz
rust-71321ff33fa3fe71cc1df541b3d0547b4e208923.zip
Remove rt::default_sched_threads and RUST_THREADS.
As @alexcrichton says, this was really a libgreen thing, and isn't
relevant now.

As this removes a technically-public function, this is a

[breaking-change]

Conflicts:
	src/libtest/lib.rs
Diffstat (limited to 'src/libstd/rt/mod.rs')
-rw-r--r--src/libstd/rt/mod.rs2
1 files changed, 1 insertions, 1 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.