]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/sync/mod.rs
std: Clean out deprecated APIs
[rust.git] / src / libstd / sync / mod.rs
index 1a42b091831b3a4244e8d54aab3a0851cbd5003b..c20b422d40cf5b907e9f8e3dff3825ca6e3f8d29 100644 (file)
@@ -38,9 +38,6 @@
 pub use self::rwlock::{RwLockReadGuard, RwLockWriteGuard};
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use self::rwlock::{RwLock, StaticRwLock, RW_LOCK_INIT};
-#[stable(feature = "rust1", since = "1.0.0")]
-#[allow(deprecated)]
-pub use self::semaphore::{Semaphore, SemaphoreGuard};
 
 pub mod mpsc;
 
@@ -49,4 +46,3 @@
 mod mutex;
 mod once;
 mod rwlock;
-mod semaphore;