mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Patched to compile on some platforms.
This commit is contained in:
parent
1dc9ae5c1e
commit
f2179944cc
@ -211,7 +211,8 @@ SDL_AtomicAdd(SDL_atomic_t *a, int v)
|
|||||||
int
|
int
|
||||||
SDL_AtomicGet(SDL_atomic_t *a)
|
SDL_AtomicGet(SDL_atomic_t *a)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_GCC_ATOMICS
|
/* !!! FIXME: __atomic_load_n is only in newer GCCs and Clang, I think, and apparently not on Android. This #ifdef should be more exact. */
|
||||||
|
#if defined(HAVE_GCC_ATOMICS) && !defined(__ANDROID__) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
|
||||||
return __atomic_load_n(&a->value, __ATOMIC_SEQ_CST);
|
return __atomic_load_n(&a->value, __ATOMIC_SEQ_CST);
|
||||||
#else
|
#else
|
||||||
int value;
|
int value;
|
||||||
@ -225,7 +226,8 @@ SDL_AtomicGet(SDL_atomic_t *a)
|
|||||||
void *
|
void *
|
||||||
SDL_AtomicGetPtr(void **a)
|
SDL_AtomicGetPtr(void **a)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_GCC_ATOMICS
|
/* !!! FIXME: __atomic_load_n is only in newer GCCs and Clang, I think, and apparently not on Android. This #ifdef should be more exact. */
|
||||||
|
#if defined(HAVE_GCC_ATOMICS) && !defined(__ANDROID__) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
|
||||||
return __atomic_load_n(a, __ATOMIC_SEQ_CST);
|
return __atomic_load_n(a, __ATOMIC_SEQ_CST);
|
||||||
#else
|
#else
|
||||||
void *value;
|
void *value;
|
||||||
|
Loading…
Reference in New Issue
Block a user