diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-18 14:51:40 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-18 15:23:57 -0700 |
| commit | d53cfd225a4e2b671b2b40b71725394c24fb1761 (patch) | |
| tree | dd99d901bd30cb08d82d2d4d8c01d92e8f13b4aa /src/libstd/sync.rs | |
| parent | 2ac64d91ac9df242c780d162863c8c0abce448b1 (diff) | |
| download | rust-d53cfd225a4e2b671b2b40b71725394c24fb1761.tar.gz rust-d53cfd225a4e2b671b2b40b71725394c24fb1761.zip | |
core: Move Exclusive and SharedMutableState to the private mod
Diffstat (limited to 'src/libstd/sync.rs')
| -rw-r--r-- | src/libstd/sync.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync.rs b/src/libstd/sync.rs index 25e6d85d1c0..68e9f24a863 100644 --- a/src/libstd/sync.rs +++ b/src/libstd/sync.rs @@ -11,7 +11,7 @@ export Condvar, Semaphore, Mutex, mutex_with_condvars; export RWlock, rwlock_with_condvars, RWlockReadMode, RWlockWriteMode; -use unsafe::{Exclusive, exclusive}; +use private::{Exclusive, exclusive}; /**************************************************************************** * Internals |
