We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c8a7b commit c320ab9Copy full SHA for c320ab9
1 file changed
library/std/src/sys/unix/thread_parker/mod.rs
@@ -11,11 +11,14 @@
11
)))]
12
13
cfg_if::cfg_if! {
14
- if #[cfg(any(
15
- target_os = "macos",
16
- target_os = "ios",
17
- target_os = "watchos",
18
- target_os = "tvos",
+ if #[cfg(all(
+ any(
+ target_os = "macos",
+ target_os = "ios",
+ target_os = "watchos",
19
+ target_os = "tvos",
20
+ ),
21
+ not(miri),
22
))] {
23
mod darwin;
24
pub use darwin::Parker;
0 commit comments