#[expect(clippy::disallowed_methods, reason = "this is the only placed")]
#[inline]
pub fn fence(order: core::sync::atomic::Ordering) {
cfg_select! {
feature = "portable-atomic" => {
portable_atomic::fence(order);
},
_ => {
core::sync::atomic::fence(order);
},
}
}