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 38b0f1b commit 151f812Copy full SHA for 151f812
library/std/src/sys/sync/condvar/mod.rs
@@ -1,5 +1,5 @@
1
cfg_if::cfg_if! {
2
- if #[cfg(any(target_os = "linux", target_os = "android", target_os = "openbsd"))] {
+ if #[cfg(all(any(target_os = "linux", target_os = "android", target_os = "openbsd"), not(miri)))] {
3
mod futex_requeue;
4
pub use futex_requeue::Condvar;
5
} else if #[cfg(any(
0 commit comments