Mercurial > sdl-ios-xcode
diff src/atomic/linux/SDL_atomic.c @ 3201:c297230efc75
Disabling 64 bit atomics operations until I figure out why they do not link.
author | Bob Pendleton <bob@pendleton.com> |
---|---|
date | Wed, 24 Jun 2009 22:24:23 +0000 |
parents | ef2c029a3a9d |
children | 3aa519a5c676 |
line wrap: on
line diff
--- a/src/atomic/linux/SDL_atomic.c Wed Jun 24 20:20:57 2009 +0000 +++ b/src/atomic/linux/SDL_atomic.c Wed Jun 24 22:24:23 2009 +0000 @@ -20,8 +20,6 @@ slouken@libsdl.org */ -#ifdef SDL_ATOMIC_LINUX - #include "SDL.h" #include "SDL_config.h" #include "SDL_atomic.h" @@ -98,7 +96,8 @@ return __sync_sub_and_fetch(ptr, value); } -#ifdef SDL_HAS_64BIT_TYPE +/* #ifdef SDL_HAS_64BIT_TYPE */ +#if 0 Uint64 SDL_AtomicExchange64(Uint64 * ptr, Uint64 value) @@ -172,4 +171,3 @@ return __sync_sub_and_fetch(ptr, value); } #endif -#endif