mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
std: do not use dispatch semaphore under miri (yet)
This commit is contained in:
parent
b4c8a7b952
commit
c320ab98ff
@ -11,11 +11,14 @@
|
||||
)))]
|
||||
|
||||
cfg_if::cfg_if! {
|
||||
if #[cfg(any(
|
||||
target_os = "macos",
|
||||
target_os = "ios",
|
||||
target_os = "watchos",
|
||||
target_os = "tvos",
|
||||
if #[cfg(all(
|
||||
any(
|
||||
target_os = "macos",
|
||||
target_os = "ios",
|
||||
target_os = "watchos",
|
||||
target_os = "tvos",
|
||||
),
|
||||
not(miri),
|
||||
))] {
|
||||
mod darwin;
|
||||
pub use darwin::Parker;
|
||||
|
Loading…
Reference in New Issue
Block a user