diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2022-04-14 11:11:41 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2022-04-16 11:30:22 +0200 |
| commit | 4212de63ab04649ac92a1b4e525d38b73dc5658c (patch) | |
| tree | d56aca6112ccc9302195467bd83a433bad8e3917 /library/std/src/sys/windows/locks/mod.rs | |
| parent | 07bb916d44a66d2caba427c7ee132bbeb245977b (diff) | |
| download | rust-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.rs | 2 |
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}; |
