about summary refs log tree commit diff
path: root/library/std/src/sys/windows/locks/mod.rs
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2022-04-14 11:11:41 +0200
committerMara Bos <m-ou.se@m-ou.se>2022-04-16 11:30:22 +0200
commit4212de63ab04649ac92a1b4e525d38b73dc5658c (patch)
treed56aca6112ccc9302195467bd83a433bad8e3917 /library/std/src/sys/windows/locks/mod.rs
parent07bb916d44a66d2caba427c7ee132bbeb245977b (diff)
downloadrust-4212de63ab04649ac92a1b4e525d38b73dc5658c.tar.gz
rust-4212de63ab04649ac92a1b4e525d38b73dc5658c.zip
Use a single ReentrantMutex implementation on all platforms.
Diffstat (limited to 'library/std/src/sys/windows/locks/mod.rs')
-rw-r--r--library/std/src/sys/windows/locks/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/windows/locks/mod.rs b/library/std/src/sys/windows/locks/mod.rs
index 35bd5913034..d412ff152a0 100644
--- a/library/std/src/sys/windows/locks/mod.rs
+++ b/library/std/src/sys/windows/locks/mod.rs
@@ -2,5 +2,5 @@ mod condvar;
 mod mutex;
 mod rwlock;
 pub use condvar::{Condvar, MovableCondvar};
-pub use mutex::{MovableMutex, Mutex, ReentrantMutex};
+pub use mutex::{MovableMutex, Mutex};
 pub use rwlock::{MovableRwLock, RwLock};