Skip to content

Commit 151f812

Browse files
committed
Temporarily disable futex requeue in miri
1 parent 38b0f1b commit 151f812

File tree

1 file changed

+1
-1
lines changed
  • library/std/src/sys/sync/condvar

1 file changed

+1
-1
lines changed

library/std/src/sys/sync/condvar/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cfg_if::cfg_if! {
2-
if #[cfg(any(target_os = "linux", target_os = "android", target_os = "openbsd"))] {
2+
if #[cfg(all(any(target_os = "linux", target_os = "android", target_os = "openbsd"), not(miri)))] {
33
mod futex_requeue;
44
pub use futex_requeue::Condvar;
55
} else if #[cfg(any(

0 commit comments

Comments
 (0)