Results 1 - 7 of 7 results out of about 6839 pages. (3.42 seconds)
- SDL_CondWaitTimeout . . . 5 matches
- ...
= SDL_CondWaitTimeout =
Use this function to wait until a condition variable is signaled or a specified amount of time has passed.
<<TableOfContents()>>
== Syntax ==
{{{#!highl...
- SDL_CondWait . . . 5 matches
- ...
= SDL_CondWait =
Use this function to wait until a condition variable is signaled.
<<TableOfContents()>>
== Syntax ==
{{{#!highlight cpp
int SDL_CondWait(SDL_cond* cond,
...
- SDL_CondBroadcast . . . 4 matches
- ...eateCond();
.
.
Thread A:
SDL_LockMutex(lock);
while (!condition) {
SDL_CondWait(cond, lock);
}
SDL_UnlockMutex(lock);
Thread B:
SDL_LockMutex(lock);
...
- SDL_CreateCond . . . 3 matches
- ...eateCond();
.
.
Thread A:
SDL_LockMutex(lock);
while (!condition) {
SDL_CondWait(cond, lock);
}
SDL_UnlockMutex(lock);
Thread B:
SDL_LockMutex(lock);
...
- SDL_DestroyCond . . . 2 matches
- ...ts here''
== Related Functions ==
.[[SDL_CondBroadcast]]
.[[SDL_CondSignal]]
.[[SDL_CondWait]]
.[[SDL_CondWaitTimeout]]
.[[SDL_CreateCond]]
----
[[CategoryAPI]], [[CategoryM...
- SDL_CondSignal . . . 2 matches
- ...can add useful comments here''
== Related Functions ==
.[[SDL_CondBroadcast]]
.[[SDL_CondWait]]
.[[SDL_CondWaitTimeout]]
.[[SDL_CreateCond]]
.[[SDL_DestroyCond]]
----
[[Cate...
- 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...
