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 317a2dd commit 94308c4Copy full SHA for 94308c4
src/macos.rs
@@ -32,11 +32,9 @@ impl ECMAScriptAtomicWaitImpl for Racy<'_, u32> {
32
}
33
};
34
if result >= 0 {
35
- eprintln!("Result: {result:?}");
36
Ok(())
37
} else {
38
let errno = std::io::Error::last_os_error().raw_os_error().unwrap_or(0);
39
- eprintln!("Errno: {errno:?}");
40
if errno == libc::ETIMEDOUT {
41
Err(FutexError::Timeout)
42
src/windows.rs
@@ -36,7 +36,6 @@ impl ECMAScriptAtomicWaitImpl for Racy<'_, u32> {
if errno == ERROR_TIMEOUT as i32 {
0 commit comments