Skip to content

Commit

Permalink
vlc_atomic: atomic_compare_exchange_weak_explicit takes 5 parameters
Browse files Browse the repository at this point in the history
Signed-off-by: Rémi Denis-Courmont <[email protected]>
  • Loading branch information
robUx4 authored and Rémi Denis-Courmont committed Jun 9, 2016
1 parent c23b610 commit ea4edfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/vlc_atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ typedef uintmax_t atomic_uintmax_t;
# define atomic_compare_exchange_weak(object,expected,desired) \
atomic_compare_exchange(object, expected, desired)

# define atomic_compare_exchange_weak_explicit(object,expected,desired,order) \
# define atomic_compare_exchange_weak_explicit(object,expected,desired,order_equal,order_different) \
atomic_compare_exchange_weak(object, expected, desired)

# define atomic_fetch_add(object,operand) \
Expand Down

0 comments on commit ea4edfb

Please sign in to comment.