1SDL_CondWaitTimeout(3) SDL API Reference SDL_CondWaitTimeout(3)
2
3
4
6 SDL_CondWaitTimeout - Wait on a condition variable, with timeout
7
9 #include "SDL.h" #include "SDL_thread.h"
10
11 int SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms);
12
14 Wait on the condition variable cond for, at most, ms milliseconds. mut
15 is unlocked so it must be locked when the function is called. Returns
16 SDL_MUTEX_TIMEDOUT if the condition is not signalled in the allotted
17 time, 0 if it was signalled or -1 on an error.
18
20 SDL_CondWait
21
22
23
24SDL Tue 11 Sep 2001, 23:00 SDL_CondWaitTimeout(3)