Implement hb_atomic_int_set() for OS X

pull/1/head
Behdad Esfahbod 13 years ago
parent 022a05ae90
commit bd908b4f10
  1. 2
      src/hb-atomic-private.hh

@ -56,6 +56,8 @@ typedef long hb_atomic_int_t;
#include <libkern/OSAtomic.h>
typedef int32_t hb_atomic_int_t;
#define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier((V), &(AI)), (AI) - (V))
#define hb_atomic_int_set(AI, V) \
do {} while (!OSAtomicCompareAndSwap32 (hb_atomic_int_get (AI), (V), (&(AI))))
#define hb_atomic_int_get(AI) OSAtomicAdd32Barrier(0, &(AI))

Loading…
Cancel
Save