Man page - sdl_unlockmutex(3)

Packages contas this manual

Manual

SDL_UnlockMutex(3) SDL3 FUNCTIONS SDL_UnlockMutex(3)

SDL_UnlockMutex - Unlock the mutex.

Defined in SDL3/SDL_mutex.h

#include "SDL3/SDL.h"
void SDL_UnlockMutex(SDL_Mutex *mutex);

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.

the mutex to unlock.

This function is available since SDL 3.2.0.

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

SDL 3.2.10 Simple Directmedia Layer