]> git.lizzy.rs Git - rust.git/blobdiff - library/std/src/sync/mod.rs
Rollup merge of #107391 - notriddle:notriddle/copy-path-button, r=GuillaumeGomez
[rust.git] / library / std / src / sync / mod.rs
index 4fee8d3e92fc84b58ee1747d095f0bbbcf128d6e..ba20bab87a40dacf90ae63288fe060d12166bb84 100644 (file)
 #[unstable(feature = "once_cell", issue = "74465")]
 pub use self::once_lock::OnceLock;
 
+pub(crate) use self::remutex::{ReentrantMutex, ReentrantMutexGuard};
+
 pub mod mpsc;
 
 mod barrier;
 mod once;
 mod once_lock;
 mod poison;
+mod remutex;
 mod rwlock;