table of contents
other versions
SDL_CreateCond(3) | SDL3 FUNCTIONS | SDL_CreateCond(3) |
NAME¶
SDL_CreateCond - Create a condition variable.
SYNOPSIS¶
#include "SDL3/SDL.h"
SDL_cond* SDL_CreateCond(void);
RETURN VALUE¶
Returns a new condition variable or NULL on failure; call
SDL_GetError () for more information.
AVAILABILITY¶
This function is available since SDL 3.0.0.
SEE ALSO¶
SDL_CondBroadcast(3), SDL_CondSignal(3), SDL_CondWait(3), SDL_CondWaitTimeout(3), SDL_DestroyCond(3)
SDL 3.0.0 | SDL |