Mercurial > sdl-ios-xcode
comparison include/SDL_atomic.h @ 5139:1a47d41912ff
Spacing for documentation tweaks
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 01 Feb 2011 12:01:37 -0800 |
parents | aee04c635ec6 |
children | 5d01d426f2ea |
comparison
equal
deleted
inserted
replaced
5138:aee04c635ec6 | 5139:1a47d41912ff |
---|---|
269 * \note If you don't know what this function is for, you shouldn't use it! | 269 * \note If you don't know what this function is for, you shouldn't use it! |
270 */ | 270 */ |
271 #ifndef SDL_AtomicCASPtr | 271 #ifndef SDL_AtomicCASPtr |
272 #define SDL_AtomicCASPtr SDL_AtomicCASPtr_ | 272 #define SDL_AtomicCASPtr SDL_AtomicCASPtr_ |
273 #endif | 273 #endif |
274 extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCASPtr_(void **a, void *oldval, void *newval); | 274 extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCASPtr_(void* *a, void *oldval, void *newval); |
275 | 275 |
276 /** | 276 /** |
277 * \brief Set a pointer to a value atomically. | 277 * \brief Set a pointer to a value atomically. |
278 * | 278 * |
279 * \return The previous value of the pointer. | 279 * \return The previous value of the pointer. |