summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrazvydas Ignotas <[email protected]>2017-09-18 22:24:34 +0300
committerGrazvydas Ignotas <[email protected]>2017-09-22 17:12:24 +0300
commit16e884d9e34ffe2c50d182297028e52b06275fa1 (patch)
tree3e178e1ca79e3ee27139c06d006c7e4aae343f98
parent2ef7f23820a67e958c2252bd81eb0458903ebf33 (diff)
util/u_atomic: remove unnecessaty __atomic functions
They are now provided by -latomic, which should be linked as needed since previous commit. Signed-off-by: Grazvydas Ignotas <[email protected]> Reviewed-by: Matt Turner <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r--src/util/u_atomic.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/util/u_atomic.c b/src/util/u_atomic.c
index b32527fe347..e4bffa8534e 100644
--- a/src/util/u_atomic.c
+++ b/src/util/u_atomic.c
@@ -74,16 +74,4 @@ __sync_val_compare_and_swap_8(uint64_t *ptr, uint64_t oldval, uint64_t newval)
return r;
}
-WEAK uint64_t
-__atomic_fetch_add_8(uint64_t *ptr, uint64_t val, int memorder)
-{
- return __sync_add_and_fetch(ptr, val);
-}
-
-WEAK uint64_t
-__atomic_fetch_sub_8(uint64_t *ptr, uint64_t val, int memorder)
-{
- return __sync_sub_and_fetch(ptr, val);
-}
-
#endif