Rollup merge of #81896 - m-ou-se:oudated-comment, r=Mark-Simulacrum
Remove outdated comment in windows' mutex.rs After https://github.com/rust-lang/rust/pull/81250, this `Mutex` no longer falls back to the `ReentrantMutex` implementation, so this comment is no longer relevant.
This commit is contained in:
commit
d2e204d158
1 changed files with 0 additions and 2 deletions
|
@ -23,8 +23,6 @@ pub struct Mutex {
|
|||
}
|
||||
|
||||
// Windows SRW Locks are movable (while not borrowed).
|
||||
// ReentrantMutexes (in Inner) are not, but those are stored indirectly through
|
||||
// a Box, so do not move when the Mutex it self is moved.
|
||||
pub type MovableMutex = Mutex;
|
||||
|
||||
unsafe impl Send for Mutex {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue