| 143 | #if PLATFORM_POSIX |
| 144 | |
| 145 | static FORCEINLINE void |
| 146 | atomic_store64(atomic64_t* dst, int64_t val) { |
| 147 | dst->nonatomic = val; |
| 148 | } |
| 149 | |
| 150 | static FORCEINLINE int64_t |
| 151 | atomic_exchange_and_add64(atomic64_t* dst, int64_t add) { |
no outgoing calls
no test coverage detected