1SDL_CondBroadcast(3) SDL API Reference SDL_CondBroadcast(3)
23
4
NAME
6SDL_CondBroadcast - Restart all threads waiting on a condition variable
7
SYNOPSIS
9#include "SDL.h" #include "SDL_thread.h"
1011
int SDL_CondBroadcast(SDL_cond *cond);
12
DESCRIPTION
14Restarts all threads that are waiting on the condition variable, cond.
15Returns 0 on success, or -1 on an error.
16
SEE ALSO
18SDL_CondSignal, SDL_CondWait
1920
21
22
SDL Tue 11 Sep 2001, 23:00 SDL_CondBroadcast(3)