sdl_createcond(3) - Linux man page
Name
SDL_CreateCond - Create a condition variableSynopsis
#include "SDL.h" #include "SDL_thread.h"
SDL_cond *SDL_CreateCond(void);
Description
Creates a condition variable.
Examples
CWSDL_cond *cond; cond=SDL_CreateCond(); . . /* Do stuff */ . . SDL_DestroyCond(cond);
See Also
SDL_DestroyCond, SDL_CondWait, SDL_CondSignal