| 106 | } |
| 107 | |
| 108 | inline void Release_Store(volatile Atomic32* ptr, Atomic32 value) { |
| 109 | MemoryBarrier(); |
| 110 | *ptr = value; |
| 111 | } |
| 112 | |
| 113 | inline Atomic32 NoBarrier_Load(volatile const Atomic32* ptr) { |
| 114 | return *ptr; |
nothing calls this directly
no test coverage detected