We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c55ad commit ba66e13Copy full SHA for ba66e13
test/test.rs
@@ -59,7 +59,7 @@ fn read_exact<Fd: AsFd>(f: Fd, buf: &mut [u8]) {
59
60
/// Any test that creates child processes must grab this mutex, regardless
61
/// of what it does with those children.
62
-pub static FORK_MTX: std::sync::Mutex<()> = std::sync::Mutex::new(());
+pub static FORK_MTX: Mutex<()> = Mutex::new(());
63
/// Any test that changes the process's current working directory must grab
64
/// the RwLock exclusively. Any process that cares about the current
65
/// working directory must grab it shared.
0 commit comments