Results 1 - 5 of 5 results out of about 6839 pages. (7.85 seconds)
- SDL_UnlockMutex . . . 3 matches
- ...
= SDL_UnlockMutex =
Use this function to unlock a mutex created with [[SDL_CreateMutex]]().
<<TableOfContents()>>
== Syntax ==
{{{#!highlight cpp
int SDL_UnlockMutex(SDL_mutex...
- SDL_LockMutex . . . 3 matches
- ...
= SDL_LockMutex =
Use this function to lock a mutex created with [[SDL_CreateMutex]]().
<<TableOfContents()>>
== Syntax ==
{{{#!highlight cpp
int SDL_LockMutex(SDL_mutex* mute...
- SDL_DestroyMutex . . . 3 matches
- ...
= SDL_DestroyMutex =
Use this function to destroy a mutex created with [[SDL_CreateMutex]]().
<<TableOfContents()>>
== Syntax ==
{{{#!highlight cpp
void SDL_DestroyMutex(SDL_m...
- SDL_TryLockMutex . . . 2 matches
- ...n.
== Code Examples ==
{{{#!highlight cpp
int status;
SDL_mutex *mutex;
mutex = SDL_CreateMutex();
if (!mutex) {
fprintf(stderr, "Couldn't create mutex\n");
return;
}
statu...
- 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...
