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 c4c6914 commit 1b9c7e6Copy full SHA for 1b9c7e6
library/std/src/sys/unix/thread_parker.rs
@@ -3,7 +3,11 @@
3
#![cfg(not(any(
4
target_os = "linux",
5
target_os = "android",
6
- all(target_os = "emscripten", target_feature = "atomics")
+ all(target_os = "emscripten", target_feature = "atomics"),
7
+ target_os = "freebsd",
8
+ target_os = "openbsd",
9
+ target_os = "netbsd",
10
+ target_os = "dragonfly",
11
)))]
12
13
use crate::cell::UnsafeCell;
0 commit comments