This commit is contained in:
Behdad Esfahbod 2011-05-02 20:52:21 -04:00
parent 72657e4ce7
commit 8d5186484b
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ typedef GStaticMutex hb_mutex_t;
typedef volatile int hb_atomic_int_t;
#define hb_atomic_int_fetch_and_add(AI, V) ((AI) += (V), (AI) - (V))
#define hb_atomic_int_get(AI) (AI)
#define hb_atomic_int_set(AI, V) HB_STMT_START { (AI) = (V); } HB_STMT_END
#define hb_atomic_int_set(AI, V) ((void) ((AI) = (V)))
typedef volatile int hb_mutex_t;
#define HB_MUTEX_INIT 0