diff options
author | Chris Robinson <[email protected]> | 2018-11-17 18:56:00 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-17 18:56:00 -0800 |
commit | 8c69fb046c9a3b983f360a71614512e0e0e5aeac (patch) | |
tree | 2a285fe4d99b5bdfd4744380458a3b05a4025382 /common/atomic.c | |
parent | 1468dee831c6d2d2b05d4fb29de062c72ea3a324 (diff) |
Always use C++11 atomics
Diffstat (limited to 'common/atomic.c')
-rw-r--r-- | common/atomic.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/common/atomic.c b/common/atomic.c deleted file mode 100644 index 7a8fe6d8..00000000 --- a/common/atomic.c +++ /dev/null @@ -1,10 +0,0 @@ - -#include "config.h" - -#include "atomic.h" - - -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); |