about summary refs log tree commit diff
path: root/library
diff options
context:
space:
mode:
authorBlackHoleFox <blackholefoxdev@gmail.com>2022-11-13 16:58:18 -0600
committerBlackHoleFox <blackholefoxdev@gmail.com>2023-09-23 19:14:25 -0500
commit58bbca958d917a89124da248735926f86c59a149 (patch)
treeefc1dce69321b96c7fd0669ad87babe70a38895f /library
parent4e5b31c2b0023dba53a1b2827f4b7ac42aaaa18f (diff)
downloadrust-58bbca958d917a89124da248735926f86c59a149.tar.gz
rust-58bbca958d917a89124da248735926f86c59a149.zip
Raise minimum supported macOS to 10.12
Diffstat (limited to 'library')
-rw-r--r--library/std/src/sys/unix/thread_parking/darwin.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/std/src/sys/unix/thread_parking/darwin.rs b/library/std/src/sys/unix/thread_parking/darwin.rs
index b709fada3b4..8231f3cba2d 100644
--- a/library/std/src/sys/unix/thread_parking/darwin.rs
+++ b/library/std/src/sys/unix/thread_parking/darwin.rs
@@ -2,8 +2,7 @@
 //!
 //! Darwin actually has futex syscalls (`__ulock_wait`/`__ulock_wake`), but they
 //! cannot be used in `std` because they are non-public (their use will lead to
-//! rejection from the App Store) and because they are only available starting
-//! with macOS version 10.12, even though the minimum target version is 10.7.
+//! rejection from the App Store).
 //!
 //! Therefore, we need to look for other synchronization primitives. Luckily, Darwin
 //! supports semaphores, which allow us to implement the behaviour we need with