Commit 3f307d79 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  atomics: cosmetics: Restructure ifdefs for greater clarity
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 3b6e8634 e1b9de4f
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "config.h"
#include "atomic.h" #include "atomic.h"
#if !HAVE_ATOMICS_NATIVE #if !HAVE_ATOMICS_NATIVE
...@@ -102,7 +103,7 @@ void *avpriv_atomic_ptr_cas(void * volatile *ptr, void *oldval, void *newval) ...@@ -102,7 +103,7 @@ void *avpriv_atomic_ptr_cas(void * volatile *ptr, void *oldval, void *newval)
#endif /* HAVE_PTHREADS */ #endif /* HAVE_PTHREADS */
#endif /* !HAVE_MEMORYBARRIER && !HAVE_SYNC_VAL_COMPARE_AND_SWAP && !HAVE_MACHINE_RW_BARRIER */ #endif /* !HAVE_ATOMICS_NATIVE */
#ifdef TEST #ifdef TEST
#include "avassert.h" #include "avassert.h"
......
...@@ -23,12 +23,16 @@ ...@@ -23,12 +23,16 @@
#include "config.h" #include "config.h"
#if HAVE_ATOMICS_NATIVE
#if HAVE_ATOMICS_GCC #if HAVE_ATOMICS_GCC
#include "atomic_gcc.h" #include "atomic_gcc.h"
#elif HAVE_ATOMICS_WIN32 #elif HAVE_ATOMICS_WIN32
#include "atomic_win32.h" #include "atomic_win32.h"
#elif HAVE_ATOMICS_SUNCC #elif HAVE_ATOMICS_SUNCC
#include "atomic_suncc.h" #include "atomic_suncc.h"
#endif
#else #else
/** /**
...@@ -70,5 +74,6 @@ int avpriv_atomic_int_add_and_fetch(volatile int *ptr, int inc); ...@@ -70,5 +74,6 @@ int avpriv_atomic_int_add_and_fetch(volatile int *ptr, int inc);
*/ */
void *avpriv_atomic_ptr_cas(void * volatile *ptr, void *oldval, void *newval); void *avpriv_atomic_ptr_cas(void * volatile *ptr, void *oldval, void *newval);
#endif /* HAVE_MEMORYBARRIER */ #endif /* HAVE_ATOMICS_NATIVE */
#endif /* AVUTIL_ATOMIC_H */ #endif /* AVUTIL_ATOMIC_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment