pub fn atomic_load_u32(ptr: &mut u32) -> u32Expand description
Atomically loads the value at *ptr.
Accepts &mut u32 for compatibility with SPIR-V’s pointer model where
all atomic operations require mutable pointers. Use atomic_load_u32_shared
when only a shared reference is available.