about summary refs log tree commit diff
path: root/src/libstd/sync.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-05-13 14:49:48 -0700
committerbors <bors@rust-lang.org>2013-05-13 14:49:48 -0700
commitad5bfd600d1611c9d1bb933a383d0db2fa0ee7bf (patch)
tree5f4639e6b344a37bb62b08d5440e441d5e957ece /src/libstd/sync.rs
parent3abc5b3ffb87b51931594f9ce953af648aad342e (diff)
parent369231beb4b29a16c27bcc2c4f9a5679b613ed19 (diff)
downloadrust-ad5bfd600d1611c9d1bb933a383d0db2fa0ee7bf.tar.gz
rust-ad5bfd600d1611c9d1bb933a383d0db2fa0ee7bf.zip
auto merge of #6387 : brson/rust/unstable, r=brson
r? @pcwalton

* Move `SharedMutableState`, `LittleLock`, and `Exclusive` from `core::unstable` to `core::unstable::sync`
* Modernize the `SharedMutableState` interface with methods
* Rename `SharedMutableState` to `UnsafeAtomicRcBox` to match `RcBox`.
Diffstat (limited to 'src/libstd/sync.rs')
-rw-r--r--src/libstd/sync.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync.rs b/src/libstd/sync.rs
index 17d051518a9..108f24d60dc 100644
--- a/src/libstd/sync.rs
+++ b/src/libstd/sync.rs
@@ -15,7 +15,7 @@
  * in std.
  */
 
-use core::unstable::{Exclusive, exclusive};
+use core::unstable::sync::{Exclusive, exclusive};
 use core::ptr;
 use core::task;
 use core::util;