SDL_CreateCond - Man Page
Create a condition variable
Synopsis
#include "SDL.h" #include "SDL_thread.h"
SDL_cond *SDL_CreateCond(void);
Description
Creates a condition variable.
Examples
SDL_cond *cond; cond=SDL_CreateCond(); . . /* Do stuff */ . . SDL_DestroyCond(cond);
See Also
Referenced By
Tue 11 Sep 2001, 23:00 SDL API Reference