Disabling 64 bit atomics operations until I figure out why they do not link.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403669
This commit is contained in:
Bob Pendleton 2009-06-24 22:24:23 +00:00
parent bd15ea1fd5
commit 9b4d5550f8
2 changed files with 41 additions and 56 deletions

View file

@ -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 @@ SDL_AtomicSubtractThenFetch32(Uint32 * ptr, Uint32 value)
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 @@ SDL_AtomicSubtractThenFetch64(Uint64 * ptr, Uint64 value)
return __sync_sub_and_fetch(ptr, value);
}
#endif
#endif