Skip to content

Commit 65596d9

Browse files
authored
Rollup merge of rust-lang#84663 - CDirkx:dropguard, r=Mark-Simulacrum
Remove `DropGuard` in `sys::windows::process` and use `StaticMutex` instead `StaticMutex` is a mutex that when locked provides a guard that unlocks the mutex again when dropped, thus provides the exact same functionality as `DropGuard`. `StaticMutex` is used in more places, and is thus preferred over an ad-hoc construct like `DropGuard`. `@rustbot` label: +T-libs-impl
2 parents b195a16 + 1ac6326 commit 65596d9

File tree

1 file changed

+4
-24
lines changed

1 file changed

+4
-24
lines changed

library/std/src/sys/windows/process.rs

+4-24
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ use crate::sys::c;
1919
use crate::sys::cvt;
2020
use crate::sys::fs::{File, OpenOptions};
2121
use crate::sys::handle::Handle;
22-
use crate::sys::mutex::Mutex;
2322
use crate::sys::pipe::{self, AnonPipe};
2423
use crate::sys::stdio;
24+
use crate::sys_common::mutex::StaticMutex;
2525
use crate::sys_common::process::{CommandEnv, CommandEnvs};
2626
use crate::sys_common::AsInner;
2727

@@ -94,10 +94,6 @@ pub struct StdioPipes {
9494
pub stderr: Option<AnonPipe>,
9595
}
9696

97-
struct DropGuard<'a> {
98-
lock: &'a Mutex,
99-
}
100-
10197
impl Command {
10298
pub fn new(program: &OsStr) -> Command {
10399
Command {
@@ -209,8 +205,9 @@ impl Command {
209205
//
210206
// For more information, msdn also has an article about this race:
211207
// http://support.microsoft.com/kb/315939
212-
static CREATE_PROCESS_LOCK: Mutex = Mutex::new();
213-
let _guard = DropGuard::new(&CREATE_PROCESS_LOCK);
208+
static CREATE_PROCESS_LOCK: StaticMutex = StaticMutex::new();
209+
210+
let _guard = unsafe { CREATE_PROCESS_LOCK.lock() };
214211

215212
let mut pipes = StdioPipes { stdin: None, stdout: None, stderr: None };
216213
let null = Stdio::Null;
@@ -259,23 +256,6 @@ impl fmt::Debug for Command {
259256
}
260257
}
261258

262-
impl<'a> DropGuard<'a> {
263-
fn new(lock: &'a Mutex) -> DropGuard<'a> {
264-
unsafe {
265-
lock.lock();
266-
DropGuard { lock }
267-
}
268-
}
269-
}
270-
271-
impl<'a> Drop for DropGuard<'a> {
272-
fn drop(&mut self) {
273-
unsafe {
274-
self.lock.unlock();
275-
}
276-
}
277-
}
278-
279259
impl Stdio {
280260
fn to_handle(&self, stdio_id: c::DWORD, pipe: &mut Option<AnonPipe>) -> io::Result<Handle> {
281261
match *self {

0 commit comments

Comments
 (0)