bindbc.sdl.bind.sdlmutex

Undocumented in source.

Members

Aliases

pSDL_CondBroadcast
alias pSDL_CondBroadcast = int function(SDL_cond* cond)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CondSignal
alias pSDL_CondSignal = int function(SDL_cond* cond)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CondWait
alias pSDL_CondWait = int function(SDL_cond* cond, SDL_mutex*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CondWaitTimeout
alias pSDL_CondWaitTimeout = int function(SDL_cond* cond, SDL_mutex* mutex, uint ms)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CreateCond
alias pSDL_CreateCond = SDL_cond* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CreateMutex
alias pSDL_CreateMutex = SDL_mutex* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CreateSemaphore
alias pSDL_CreateSemaphore = SDL_sem* function(uint initial_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_DestroyCond
alias pSDL_DestroyCond = void function(SDL_cond* cond)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_DestroyMutex
alias pSDL_DestroyMutex = void function(SDL_mutex* mutex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_DestroySemaphore
alias pSDL_DestroySemaphore = void function(SDL_sem* sem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_LockMutex
alias pSDL_LockMutex = int function(SDL_mutex* mutex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_SemPost
alias pSDL_SemPost = int function(SDL_sem* sem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_SemValue
alias pSDL_SemValue = uint function(SDL_sem* sem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_SemWait
alias pSDL_SemWait = int function(SDL_sem* sem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_SemWaitTimeout
alias pSDL_SemWaitTimeout = int function(SDL_sem* sem, uint ms)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_TryLockMutex
alias pSDL_TryLockMutex = int function(SDL_mutex* mutex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_UnlockMutex
alias pSDL_UnlockMutex = int function(SDL_mutex* mutex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

SDL_CondBroadcast
int SDL_CondBroadcast(SDL_cond* cond)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CondSignal
int SDL_CondSignal(SDL_cond* cond)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CondWait
int SDL_CondWait(SDL_cond* cond, SDL_mutex* )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CondWaitTimeout
int SDL_CondWaitTimeout(SDL_cond* cond, SDL_mutex* mutex, uint ms)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CreateCond
SDL_cond* SDL_CreateCond()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CreateMutex
SDL_mutex* SDL_CreateMutex()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CreateSemaphore
SDL_sem* SDL_CreateSemaphore(uint initial_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_DestroyCond
void SDL_DestroyCond(SDL_cond* cond)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_DestroyMutex
void SDL_DestroyMutex(SDL_mutex* mutex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_DestroySemaphore
void SDL_DestroySemaphore(SDL_sem* sem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_LockMutex
int SDL_LockMutex(SDL_mutex* mutex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_SemPost
int SDL_SemPost(SDL_sem* sem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_SemValue
uint SDL_SemValue(SDL_sem* sem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_SemWait
int SDL_SemWait(SDL_sem* sem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_SemWaitTimeout
int SDL_SemWaitTimeout(SDL_sem* sem, uint ms)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_TryLockMutex
int SDL_TryLockMutex(SDL_mutex* mutex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_UnlockMutex
int SDL_UnlockMutex(SDL_mutex* mutex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Manifest constants

SDL_MUTEX_MAXWAIT
enum SDL_MUTEX_MAXWAIT;
Undocumented in source.
SDL_MUTEX_TIMEOUT
enum SDL_MUTEX_TIMEOUT;
Undocumented in source.

Static variables

SDL_CondBroadcast
pSDL_CondBroadcast SDL_CondBroadcast;
Undocumented in source.
SDL_CondSignal
pSDL_CondSignal SDL_CondSignal;
Undocumented in source.
SDL_CondWait
pSDL_CondWait SDL_CondWait;
Undocumented in source.
SDL_CondWaitTimeout
pSDL_CondWaitTimeout SDL_CondWaitTimeout;
Undocumented in source.
SDL_CreateCond
pSDL_CreateCond SDL_CreateCond;
Undocumented in source.
SDL_CreateMutex
pSDL_CreateMutex SDL_CreateMutex;
Undocumented in source.
SDL_CreateSemaphore
pSDL_CreateSemaphore SDL_CreateSemaphore;
Undocumented in source.
SDL_DestroyCond
pSDL_DestroyCond SDL_DestroyCond;
Undocumented in source.
SDL_DestroyMutex
pSDL_DestroyMutex SDL_DestroyMutex;
Undocumented in source.
SDL_DestroySemaphore
pSDL_DestroySemaphore SDL_DestroySemaphore;
Undocumented in source.
SDL_LockMutex
pSDL_LockMutex SDL_LockMutex;
Undocumented in source.
SDL_SemPost
pSDL_SemPost SDL_SemPost;
Undocumented in source.
SDL_SemValue
pSDL_SemValue SDL_SemValue;
Undocumented in source.
SDL_SemWait
pSDL_SemWait SDL_SemWait;
Undocumented in source.
SDL_SemWaitTimeout
pSDL_SemWaitTimeout SDL_SemWaitTimeout;
Undocumented in source.
SDL_TryLockMutex
pSDL_TryLockMutex SDL_TryLockMutex;
Undocumented in source.
SDL_UnlockMutex
pSDL_UnlockMutex SDL_UnlockMutex;
Undocumented in source.

Structs

SDL_cond
struct SDL_cond
Undocumented in source.
SDL_mutex
struct SDL_mutex
Undocumented in source.
SDL_sem
struct SDL_sem
Undocumented in source.

Meta