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 6c107e0 commit ec7e160Copy full SHA for ec7e160
std/src/sys/unix/thread_parking/darwin.rs
@@ -2,8 +2,7 @@
2
//!
3
//! Darwin actually has futex syscalls (`__ulock_wait`/`__ulock_wake`), but they
4
//! cannot be used in `std` because they are non-public (their use will lead to
5
-//! rejection from the App Store) and because they are only available starting
6
-//! with macOS version 10.12, even though the minimum target version is 10.7.
+//! rejection from the App Store).
7
8
//! Therefore, we need to look for other synchronization primitives. Luckily, Darwin
9
//! supports semaphores, which allow us to implement the behaviour we need with
0 commit comments