| 73 | return _InterlockedCompareExchange64((int64 volatile*)dst, 0, 0); |
| 74 | } |
| 75 | static void AtomicStore(int32 volatile* dst, int32 value) |
| 76 | { |
| 77 | _InterlockedExchange((long volatile*)dst, value); |
| 78 | } |
| 79 | static void AtomicStore(int64 volatile* dst, int64 value) |
| 80 | { |
| 81 | #if WIN64 |