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