aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-07-31 04:34:46 -0700
committerChris Robinson <[email protected]>2014-07-31 04:34:46 -0700
commitce046d2f03a349d15a5e092d64287df33a79117b (patch)
tree1ff151d7743a5bf7203591a7dab69d0beaf761d0 /common
parent6ce464aed89de37c519fad36d17fa9b9ba7819e5 (diff)
Rename ATOMIC_COMPARE_EXCHANGE to ATOMIC_COMPARE_EXCHANGE_STRONG
Diffstat (limited to 'common')
-rw-r--r--common/atomic.c2
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);