mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-05 11:33:04 +00:00
Rollup merge of #98479 - leocth:atomic-bool-fetch-not, r=joshtriplett
Add `fetch_not` method on `AtomicBool` This PR adds a `fetch_not` method on `AtomicBool` performs the NOT operation on the inner value. Internally, this just calls the `fetch_xor` method with the value `true`. [See this IRLO discussion](https://internals.rust-lang.org/t/could-we-have-fetch-not-for-atomicbool-s/16881)
This commit is contained in:
commit
3f2ba25159
@ -854,6 +854,42 @@ impl AtomicBool {
|
|||||||
unsafe { atomic_xor(self.v.get(), val as u8, order) != 0 }
|
unsafe { atomic_xor(self.v.get(), val as u8, order) != 0 }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Logical "not" with a boolean value.
|
||||||
|
///
|
||||||
|
/// Performs a logical "not" operation on the current value, and sets
|
||||||
|
/// the new value to the result.
|
||||||
|
///
|
||||||
|
/// Returns the previous value.
|
||||||
|
///
|
||||||
|
/// `fetch_not` takes an [`Ordering`] argument which describes the memory ordering
|
||||||
|
/// of this operation. All ordering modes are possible. Note that using
|
||||||
|
/// [`Acquire`] makes the store part of this operation [`Relaxed`], and
|
||||||
|
/// using [`Release`] makes the load part [`Relaxed`].
|
||||||
|
///
|
||||||
|
/// **Note:** This method is only available on platforms that support atomic
|
||||||
|
/// operations on `u8`.
|
||||||
|
///
|
||||||
|
/// # Examples
|
||||||
|
///
|
||||||
|
/// ```
|
||||||
|
/// #![feature(atomic_bool_fetch_not)]
|
||||||
|
/// use std::sync::atomic::{AtomicBool, Ordering};
|
||||||
|
///
|
||||||
|
/// let foo = AtomicBool::new(true);
|
||||||
|
/// assert_eq!(foo.fetch_not(Ordering::SeqCst), true);
|
||||||
|
/// assert_eq!(foo.load(Ordering::SeqCst), false);
|
||||||
|
///
|
||||||
|
/// let foo = AtomicBool::new(false);
|
||||||
|
/// assert_eq!(foo.fetch_not(Ordering::SeqCst), false);
|
||||||
|
/// assert_eq!(foo.load(Ordering::SeqCst), true);
|
||||||
|
/// ```
|
||||||
|
#[inline]
|
||||||
|
#[unstable(feature = "atomic_bool_fetch_not", issue = "98485")]
|
||||||
|
#[cfg(target_has_atomic = "8")]
|
||||||
|
pub fn fetch_not(&self, order: Ordering) -> bool {
|
||||||
|
self.fetch_xor(true, order)
|
||||||
|
}
|
||||||
|
|
||||||
/// Returns a mutable pointer to the underlying [`bool`].
|
/// Returns a mutable pointer to the underlying [`bool`].
|
||||||
///
|
///
|
||||||
/// Doing non-atomic reads and writes on the resulting integer can be a data race.
|
/// Doing non-atomic reads and writes on the resulting integer can be a data race.
|
||||||
|
Loading…
Reference in New Issue
Block a user