about summary refs log tree commit diff
path: root/src/libstd/sys/unix/pipe.rs
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2014-11-14 16:30:16 -0800
committerAaron Turon <aturon@mozilla.com>2014-11-20 17:19:24 -0800
commit6987ad22e46f55b12d8749be7522f4578d227c62 (patch)
treec2b93fc9bb8be2e8dc07c4eb9a964ba25f04ec21 /src/libstd/sys/unix/pipe.rs
parent40c78ab037c70d61eb4f8c95c7a4fec8f098644b (diff)
downloadrust-6987ad22e46f55b12d8749be7522f4578d227c62.tar.gz
rust-6987ad22e46f55b12d8749be7522f4578d227c62.zip
Make most of std::rt private
Previously, the entire runtime API surface was publicly exposed, but
that is neither necessary nor desirable. This commit hides most of the
module, using librustrt directly as needed. The arrangement will need to
be revisited when rustrt is pulled into std.

[breaking-change]
Diffstat (limited to 'src/libstd/sys/unix/pipe.rs')
-rw-r--r--src/libstd/sys/unix/pipe.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/pipe.rs b/src/libstd/sys/unix/pipe.rs
index 3fba06e0c7f..4d3469a9c24 100644
--- a/src/libstd/sys/unix/pipe.rs
+++ b/src/libstd/sys/unix/pipe.rs
@@ -12,7 +12,7 @@ use alloc::arc::Arc;
 use libc;
 use c_str::CString;
 use mem;
-use rt::mutex;
+use rustrt::mutex;
 use sync::atomic;
 use io::{mod, IoResult, IoError};
 use prelude::*;