comparison include/SDL_atomic.h @ 4474:119023057881

Typo in documentation
author Sam Lantinga <slouken@libsdl.org>
date Sun, 27 Jun 2010 23:17:36 -0700
parents f7b03b6838cb
children 3a95a2b93eb3
comparison
equal deleted inserted replaced
4473:e8045ba3f79f 4474:119023057881
116 /** 116 /**
117 * \brief Fetch \c *ptr and then decrement the value in place. 117 * \brief Fetch \c *ptr and then decrement the value in place.
118 * 118 *
119 * \return The value before it was decremented. 119 * \return The value before it was decremented.
120 * 120 *
121 * \param ptr Address of the value to fetch and drement 121 * \param ptr Address of the value to fetch and decrement
122 */ 122 */
123 extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenDecrement32(volatile Uint32 * ptr); 123 extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenDecrement32(volatile Uint32 * ptr);
124 124
125 /** 125 /**
126 * \brief Fetch the current value at \c ptr and then add \c value to \c *ptr. 126 * \brief Fetch the current value at \c ptr and then add \c value to \c *ptr.