|
NAMESDL_CreateCond - Create a condition variableSYNOPSIS#include "SDL.h" #include "SDL_thread.h"SDL_cond *SDL_CreateCond(void); DESCRIPTIONCreates a condition variable.EXAMPLESSDL_cond *cond; cond=SDL_CreateCond(); . . /* Do stuff */ . . SDL_DestroyCond(cond); SEE ALSOSDL_DestroyCond, SDL_CondWait, SDL_CondSignal
Visit the GSP FreeBSD Man Page Interface. |