Replaces the value in the atomic integer by the maximum of the current value and a given value with release semantics.
impl AtomicU32 {
fn max_release(&self, val: u32) -> u32
}| Name | Description |
|---|---|
| val | The value that will be compared to the integer. |
Returns the old value.