-
Notifications
You must be signed in to change notification settings - Fork 13.8k
std: refactor pthread
-based synchronization
#128184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,172 @@ | ||||||||||
use super::Mutex; | ||||||||||
use crate::cell::UnsafeCell; | ||||||||||
use crate::pin::Pin; | ||||||||||
#[cfg(not(target_os = "nto"))] | ||||||||||
use crate::sys::pal::time::TIMESPEC_MAX; | ||||||||||
#[cfg(target_os = "nto")] | ||||||||||
use crate::sys::pal::time::TIMESPEC_MAX_CAPPED; | ||||||||||
use crate::sys::pal::time::Timespec; | ||||||||||
use crate::time::Duration; | ||||||||||
|
||||||||||
pub struct Condvar { | ||||||||||
inner: UnsafeCell<libc::pthread_cond_t>, | ||||||||||
} | ||||||||||
|
||||||||||
impl Condvar { | ||||||||||
pub fn new() -> Condvar { | ||||||||||
Condvar { inner: UnsafeCell::new(libc::PTHREAD_COND_INITIALIZER) } | ||||||||||
} | ||||||||||
|
||||||||||
#[inline] | ||||||||||
fn raw(&self) -> *mut libc::pthread_cond_t { | ||||||||||
self.inner.get() | ||||||||||
} | ||||||||||
|
||||||||||
/// # Safety | ||||||||||
/// `init` must have been called. | ||||||||||
#[inline] | ||||||||||
pub unsafe fn notify_one(self: Pin<&Self>) { | ||||||||||
let r = unsafe { libc::pthread_cond_signal(self.raw()) }; | ||||||||||
debug_assert_eq!(r, 0); | ||||||||||
} | ||||||||||
|
||||||||||
/// # Safety | ||||||||||
/// `init` must have been called. | ||||||||||
#[inline] | ||||||||||
pub unsafe fn notify_all(self: Pin<&Self>) { | ||||||||||
let r = unsafe { libc::pthread_cond_broadcast(self.raw()) }; | ||||||||||
debug_assert_eq!(r, 0); | ||||||||||
} | ||||||||||
|
||||||||||
/// # Safety | ||||||||||
/// * `init` must have been called. | ||||||||||
/// * `mutex` must be locked by the current thread. | ||||||||||
/// * This condition variable may only be used with the same mutex. | ||||||||||
#[inline] | ||||||||||
pub unsafe fn wait(self: Pin<&Self>, mutex: Pin<&Mutex>) { | ||||||||||
let r = unsafe { libc::pthread_cond_wait(self.raw(), mutex.raw()) }; | ||||||||||
debug_assert_eq!(r, 0); | ||||||||||
} | ||||||||||
|
||||||||||
/// # Safety | ||||||||||
/// * `init` must have been called. | ||||||||||
/// * `mutex` must be locked by the current thread. | ||||||||||
/// * This condition variable may only be used with the same mutex. | ||||||||||
pub unsafe fn wait_timeout(&self, mutex: Pin<&Mutex>, dur: Duration) -> bool { | ||||||||||
let mutex = mutex.raw(); | ||||||||||
|
||||||||||
// OSX implementation of `pthread_cond_timedwait` is buggy | ||||||||||
// with super long durations. When duration is greater than | ||||||||||
// 0x100_0000_0000_0000 seconds, `pthread_cond_timedwait` | ||||||||||
// in macOS Sierra returns error 316. | ||||||||||
// | ||||||||||
// This program demonstrates the issue: | ||||||||||
// https://gist.github.com/stepancheg/198db4623a20aad2ad7cddb8fda4a63c | ||||||||||
// | ||||||||||
// To work around this issue, the timeout is clamped to 1000 years. | ||||||||||
#[cfg(target_vendor = "apple")] | ||||||||||
let dur = Duration::min(dur, Duration::from_secs(1000 * 365 * 86400)); | ||||||||||
|
||||||||||
let timeout = Timespec::now(Self::CLOCK).checked_add_duration(&dur); | ||||||||||
|
||||||||||
#[cfg(not(target_os = "nto"))] | ||||||||||
let timeout = timeout.and_then(|t| t.to_timespec()).unwrap_or(TIMESPEC_MAX); | ||||||||||
|
||||||||||
#[cfg(target_os = "nto")] | ||||||||||
let timeout = timeout.and_then(|t| t.to_timespec_capped()).unwrap_or(TIMESPEC_MAX_CAPPED); | ||||||||||
|
||||||||||
let r = unsafe { libc::pthread_cond_timedwait(self.raw(), mutex, &timeout) }; | ||||||||||
assert!(r == libc::ETIMEDOUT || r == 0); | ||||||||||
r == 0 | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
#[cfg(not(any( | ||||||||||
target_os = "android", | ||||||||||
target_vendor = "apple", | ||||||||||
target_os = "espidf", | ||||||||||
target_os = "horizon", | ||||||||||
target_os = "l4re", | ||||||||||
target_os = "redox", | ||||||||||
target_os = "teeos", | ||||||||||
)))] | ||||||||||
impl Condvar { | ||||||||||
pub const PRECISE_TIMEOUT: bool = true; | ||||||||||
const CLOCK: libc::clockid_t = libc::CLOCK_MONOTONIC; | ||||||||||
|
||||||||||
/// # Safety | ||||||||||
/// May only be called once. | ||||||||||
pub unsafe fn init(self: Pin<&mut Self>) { | ||||||||||
use crate::mem::MaybeUninit; | ||||||||||
|
||||||||||
struct AttrGuard<'a>(pub &'a mut MaybeUninit<libc::pthread_condattr_t>); | ||||||||||
impl Drop for AttrGuard<'_> { | ||||||||||
fn drop(&mut self) { | ||||||||||
unsafe { | ||||||||||
let result = libc::pthread_condattr_destroy(self.0.as_mut_ptr()); | ||||||||||
assert_eq!(result, 0); | ||||||||||
} | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
unsafe { | ||||||||||
let mut attr = MaybeUninit::<libc::pthread_condattr_t>::uninit(); | ||||||||||
let r = libc::pthread_condattr_init(attr.as_mut_ptr()); | ||||||||||
assert_eq!(r, 0); | ||||||||||
let attr = AttrGuard(&mut attr); | ||||||||||
let r = libc::pthread_condattr_setclock(attr.0.as_mut_ptr(), Self::CLOCK); | ||||||||||
assert_eq!(r, 0); | ||||||||||
let r = libc::pthread_cond_init(self.raw(), attr.0.as_ptr()); | ||||||||||
assert_eq!(r, 0); | ||||||||||
} | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
// `pthread_condattr_setclock` is unfortunately not supported on these platforms. | ||||||||||
#[cfg(any( | ||||||||||
target_os = "android", | ||||||||||
target_vendor = "apple", | ||||||||||
target_os = "espidf", | ||||||||||
target_os = "horizon", | ||||||||||
target_os = "l4re", | ||||||||||
target_os = "redox", | ||||||||||
target_os = "teeos", | ||||||||||
))] | ||||||||||
impl Condvar { | ||||||||||
pub const PRECISE_TIMEOUT: bool = false; | ||||||||||
const CLOCK: libc::clockid_t = libc::CLOCK_REALTIME; | ||||||||||
|
||||||||||
/// # Safety | ||||||||||
/// May only be called once. | ||||||||||
|
/// # Safety | |
/// May only be called once. | |
/// # Safety | |
/// This value must only be initialized once. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#![cfg(not(any( | ||
target_os = "linux", | ||
target_os = "android", | ||
all(target_os = "emscripten", target_feature = "atomics"), | ||
target_os = "freebsd", | ||
target_os = "openbsd", | ||
target_os = "dragonfly", | ||
target_os = "fuchsia", | ||
)))] | ||
#![forbid(unsafe_op_in_unsafe_fn)] | ||
|
||
mod condvar; | ||
mod mutex; | ||
|
||
pub use condvar::Condvar; | ||
pub use mutex::Mutex; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,133 @@ | ||||||||||
use super::super::cvt_nz; | ||||||||||
use crate::cell::UnsafeCell; | ||||||||||
use crate::io::Error; | ||||||||||
use crate::mem::MaybeUninit; | ||||||||||
use crate::pin::Pin; | ||||||||||
|
||||||||||
pub struct Mutex { | ||||||||||
inner: UnsafeCell<libc::pthread_mutex_t>, | ||||||||||
} | ||||||||||
|
||||||||||
impl Mutex { | ||||||||||
pub fn new() -> Mutex { | ||||||||||
Mutex { inner: UnsafeCell::new(libc::PTHREAD_MUTEX_INITIALIZER) } | ||||||||||
} | ||||||||||
|
||||||||||
pub(super) fn raw(&self) -> *mut libc::pthread_mutex_t { | ||||||||||
self.inner.get() | ||||||||||
} | ||||||||||
|
||||||||||
/// # Safety | ||||||||||
/// Must only be called once. | ||||||||||
pub unsafe fn init(self: Pin<&mut Self>) { | ||||||||||
|
/// Must only be called once. | |
pub unsafe fn init(self: Pin<&mut Self>) { | |
/// This value must only be initialized once. | |
pub unsafe fn init(self: Pin<&mut Self>) { |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.