Results 1 - 6 of 6 results out of about 6838 pages. (4.18 seconds)
- SDL_DestroyCond . . . 2 matches
- ...=
||'''cond'''||the condition variable to destroy||
== Code Examples ==
<<Include(SDL_CreateCond, , , from="## Begin Condition Variable Example", to="## End Condition Variable Exa...
- SDL_CondWaitTimeout . . . 2 matches
- ...on = SDL_FALSE;
SDL_mutex *lock;
SDL_cond *cond;
lock = SDL_CreateMutex();
cond = SDL_CreateCond();
.
.
Thread A:
const Uint32 timeout = 1000; /* wake up every second */
...
- SDL_CondWait . . . 2 matches
- ...lure; call [[SDL_GetError]]() for more information.
== Code Examples ==
<<Include(SDL_CreateCond, , , from="## Begin Condition Variable Example", to="## End Condition Variable Exa...
- SDL_CondSignal . . . 2 matches
- ...lure; call [[SDL_GetError]]() for more information.
== Code Examples ==
<<Include(SDL_CreateCond, , , from="## Begin Condition Variable Example", to="## End Condition Variable Exa...
- SDL_CondBroadcast . . . 2 matches
- ...on = SDL_FALSE;
SDL_mutex *lock;
SDL_cond *cond;
lock = SDL_CreateMutex();
cond = SDL_CreateCond();
.
.
Thread A:
SDL_LockMutex(lock);
while (!condition) {
SDL_Con...
- CategoryAPI . . . 1 match
- ...##master-page:CategoryTemplate
##master-date:Unknown-Date
#format wiki
#language en
= SDL 2.0 API by Name =
<<TableOfContents()>>
== Hints ==
<<FullSearchCached(category:Catego...
