SDL_mutexV
NAME SYNOPSIS DESCRIPTION SEE ALSO
SDL_mutexV- Unlock a mutex
#include
int SDL_mutexV(SDL_mutex *mutex);
Unlocks the mutex, which was previously created with SDL_!CreateMutex?. Returns 0 on success, or -1 on an error.
SDL also defines a macro #define SDL_!UnlockMutex?(m) SDL_mutexV(m).
SDL_!CreateMutex?, SDL_mutexP
One page links to SDL_mutexV(3):