Fix ATOMIC_{ACQUIRE,RELEASE,ACQ_REL} definitions.

This commit is contained in:
Jason Evans 2017-03-08 23:32:53 -08:00
parent f84471edc3
commit 75fddc786c

View File

@ -39,9 +39,9 @@
* quite so often.
*/
#define ATOMIC_RELAXED atomic_memory_order_relaxed
#define ATOMIC_ACQUIRE atomic_memory_order_acquire,
#define ATOMIC_RELEASE atomic_memory_order_release,
#define ATOMIC_ACQ_REL atomic_memory_order_acq_rel,
#define ATOMIC_ACQUIRE atomic_memory_order_acquire
#define ATOMIC_RELEASE atomic_memory_order_release
#define ATOMIC_ACQ_REL atomic_memory_order_acq_rel
#define ATOMIC_SEQ_CST atomic_memory_order_seq_cst
/*