Name

SDL_CreateCond — 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

SDL_DestroyCond(3), SDL_CondWait(3), SDL_CondSignal(3)

COPYRIGHT

This manual page is taken from the SDL library, licensed under GNU LGPL.