Unlock the mutex.
int SDL_UnlockMutex(SDL_Mutex *mutex) SDL_RELEASE(mutex);
mutex | the mutex to unlock. |
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
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.
This function is available since SDL 3.0.0.
<<Include(SDL_CreateMutex, , , from="## Begin Mutex Example", to="## End Mutex Example")>>