OSDN Git Service

Use __sync_add_and_fetch instead of __sync_fetch_and_add for atomic_dec_and_test
authorMaarten Lankhorst <maarten.lankhorst@ubuntu.com>
Thu, 26 Feb 2015 10:54:02 +0000 (11:54 +0100)
committerMaarten Lankhorst <dev@mblankhorst.nl>
Fri, 13 Mar 2015 19:21:57 +0000 (20:21 +0100)
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@ubuntu.com>
Acked-By: Emil Velikov <emil.l.velikov@gmail.com>
xf86atomic.h

index 17fb088..194554c 100644 (file)
@@ -50,7 +50,7 @@ typedef struct {
 # define atomic_set(x, val) ((x)->atomic = (val))
 # define atomic_inc(x) ((void) __sync_fetch_and_add (&(x)->atomic, 1))
 # define atomic_inc_return(x) (__sync_add_and_fetch (&(x)->atomic, 1))
-# define atomic_dec_and_test(x) (__sync_fetch_and_add (&(x)->atomic, -1) == 1)
+# define atomic_dec_and_test(x) (__sync_add_and_fetch (&(x)->atomic, -1) == 0)
 # define atomic_add(x, v) ((void) __sync_add_and_fetch(&(x)->atomic, (v)))
 # define atomic_dec(x, v) ((void) __sync_sub_and_fetch(&(x)->atomic, (v)))
 # define atomic_cmpxchg(x, oldv, newv) __sync_val_compare_and_swap (&(x)->atomic, oldv, newv)