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.
Condvar
RwLock
1 parent 82fa41a commit 113f7e9Copy full SHA for 113f7e9
library/std/src/sys/locks/condvar/mod.rs
@@ -9,6 +9,10 @@ cfg_if::cfg_if! {
9
target_os = "fuchsia",
10
all(target_family = "wasm", target_feature = "atomics"),
11
target_os = "hermit",
12
+ target_os = "macos",
13
+ target_os = "ios",
14
+ target_os = "tvos",
15
+ target_os = "watchos",
16
))] {
17
mod futex;
18
pub use futex::Condvar;
library/std/src/sys/locks/rwlock/mod.rs
pub use futex::RwLock;
0 commit comments