diff options
| author | joboet <jonasboettiger@icloud.com> | 2022-10-18 13:23:49 +0200 |
|---|---|---|
| committer | joboet <jonasboettiger@icloud.com> | 2022-11-06 15:32:59 +0100 |
| commit | 98815742cf2e914ee0d7142a02322cf939c47834 (patch) | |
| tree | 1915c9196da26046e81dddcd90950d1d9c39913c /library/std/src/sys/unix/locks/futex_condvar.rs | |
| parent | 534ddc6166a9031b0c269544929d68f2539ea7a0 (diff) | |
| download | rust-98815742cf2e914ee0d7142a02322cf939c47834.tar.gz rust-98815742cf2e914ee0d7142a02322cf939c47834.zip | |
std: remove lock wrappers in `sys_common`
Diffstat (limited to 'library/std/src/sys/unix/locks/futex_condvar.rs')
| -rw-r--r-- | library/std/src/sys/unix/locks/futex_condvar.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/library/std/src/sys/unix/locks/futex_condvar.rs b/library/std/src/sys/unix/locks/futex_condvar.rs index c0576c17880..4bd65dd25c2 100644 --- a/library/std/src/sys/unix/locks/futex_condvar.rs +++ b/library/std/src/sys/unix/locks/futex_condvar.rs @@ -3,8 +3,6 @@ use crate::sync::atomic::{AtomicU32, Ordering::Relaxed}; use crate::sys::futex::{futex_wait, futex_wake, futex_wake_all}; use crate::time::Duration; -pub type MovableCondvar = Condvar; - pub struct Condvar { // The value of this atomic is simply incremented on every notification. // This is used by `.wait()` to not miss any notifications after @@ -21,12 +19,12 @@ impl Condvar { // All the memory orderings here are `Relaxed`, // because synchronization is done by unlocking and locking the mutex. - pub unsafe fn notify_one(&self) { + pub fn notify_one(&self) { self.futex.fetch_add(1, Relaxed); futex_wake(&self.futex); } - pub unsafe fn notify_all(&self) { + pub fn notify_all(&self) { self.futex.fetch_add(1, Relaxed); futex_wake_all(&self.futex); } |
