comparison include/SDL_mutex.h @ 4469:f67139f6d87f

Fixed wording for consistency
author Sam Lantinga <slouken@libsdl.org>
date Sun, 06 Jun 2010 21:09:45 -0700
parents f7b03b6838cb
children 0846f18eb625
comparison
equal deleted inserted replaced
4468:82f357a91d43 4469:f67139f6d87f
192 * 192 *
193 * The mutex is re-locked once the condition variable is signaled. 193 * The mutex is re-locked once the condition variable is signaled.
194 * 194 *
195 * \return 0 when it is signaled, or -1 on error. 195 * \return 0 when it is signaled, or -1 on error.
196 */ 196 */
197 extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond * cond, SDL_mutex * mut); 197 extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond * cond, SDL_mutex * mutex);
198 198
199 /** 199 /**
200 * Waits for at most \c ms milliseconds, and returns 0 if the condition 200 * Waits for at most \c ms milliseconds, and returns 0 if the condition
201 * variable is signaled, ::SDL_MUTEX_TIMEDOUT if the condition is not 201 * variable is signaled, ::SDL_MUTEX_TIMEDOUT if the condition is not
202 * signaled in the allotted time, and -1 on error. 202 * signaled in the allotted time, and -1 on error.