summary refs log tree commit diff
path: root/src/libstd/rt/mod.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-07-27 16:10:59 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-07-27 16:21:15 -0700
commitcf1ff56f3c8a7a55fa38bcdda3907147d25382a2 (patch)
tree29daf941fb2f83ac179a8700aa4d73487812ba0e /src/libstd/rt/mod.rs
parent3e6b03c2d87a1f54bfde2ea82b1f85aa4df04909 (diff)
downloadrust-cf1ff56f3c8a7a55fa38bcdda3907147d25382a2.tar.gz
rust-cf1ff56f3c8a7a55fa38bcdda3907147d25382a2.zip
std: Remove msvc/valgrind headers
These aren't really used for anything any more, so there doesn't seem to be much
reason to leave them around in the `rt` directory. There was some limiting of
threads spawned or tests when run under valgrind, but very little is run under
valgrind nowadays so there's also no real use keeping these around.
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 0ac0d03e19d..7e86bb775a1 100644
--- a/src/libstd/rt/mod.rs
+++ b/src/libstd/rt/mod.rs
@@ -26,7 +26,7 @@ use sys;
 use usize;
 
 // Reexport some of our utilities which are expected by other crates.
-pub use self::util::{min_stack, running_on_valgrind};
+pub use self::util::min_stack;
 pub use self::unwind::{begin_unwind, begin_unwind_fmt};
 
 // Reexport some functionality from liballoc.