plucky (3) SDL_UnlockMutex.3.gz

Provided by: libsdl3-doc_3.2.4+ds-2_all bug

NAME

       SDL_UnlockMutex - Unlock the mutex.

HEADER FILE

       Defined in SDL3/SDL_mutex.h

SYNOPSIS

       #include "SDL3/SDL.h"

       void SDL_UnlockMutex(SDL_Mutex *mutex);

DESCRIPTION

       It  is  legal for the owning thread to lock an already-locked mutex. It must unlock it the same number of
       times before it is actually made available for other threads in the system (this is known as a "recursive
       mutex").

       It  is  illegal to unlock a mutex that has not been locked by the current thread, and doing so results in
       undefined behavior.

FUNCTION PARAMETERS

       mutex  the mutex to unlock.

AVAILABILITY

       This function is available since SDL 3.2.0.

SEE ALSO

       (3), SDL_LockMutex(3), (3), SDL_TryLockMutex(3)