diff options
author | Chris Robinson <[email protected]> | 2014-07-31 04:34:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-07-31 04:34:46 -0700 |
commit | ce046d2f03a349d15a5e092d64287df33a79117b (patch) | |
tree | 1ff151d7743a5bf7203591a7dab69d0beaf761d0 /common | |
parent | 6ce464aed89de37c519fad36d17fa9b9ba7819e5 (diff) |
Rename ATOMIC_COMPARE_EXCHANGE to ATOMIC_COMPARE_EXCHANGE_STRONG
Diffstat (limited to 'common')
-rw-r--r-- | common/atomic.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/atomic.c b/common/atomic.c index ab258e8e..90654628 100644 --- a/common/atomic.c +++ b/common/atomic.c @@ -8,8 +8,6 @@ extern inline void InitRef(RefCount *ptr, uint value); extern inline uint ReadRef(RefCount *ptr); extern inline uint IncrementRef(RefCount *ptr); extern inline uint DecrementRef(RefCount *ptr); -extern inline uint ExchangeRef(RefCount *ptr, uint newval); -extern inline uint CompExchangeRef(RefCount *ptr, uint oldval, uint newval); extern inline int ExchangeInt(volatile int *ptr, int newval); extern inline void *ExchangePtr(XchgPtr *ptr, void *newval); |