| 101 | } |
| 102 | |
| 103 | inline void Acquire_Store(volatile Atomic32* ptr, Atomic32 value) { |
| 104 | *ptr = value; |
| 105 | MemoryBarrier(); |
| 106 | } |
| 107 | |
| 108 | inline void Release_Store(volatile Atomic32* ptr, Atomic32 value) { |
| 109 | MemoryBarrier(); |
nothing calls this directly
no test coverage detected