SDL_mutexV - Unlock a mutex
Contents
Description
Unlocks the mutex, which was previously created with SDL_CreateMutex. Returns 0 on success, or -1 on an
error.
SDL also defines a macro #defineSDL_UnlockMutex(m)SDL_mutexV(m).
Name
SDL_mutexV - Unlock a mutex
See Also
SDL_CreateMutex, SDL_mutexP
SDL Tue 11 Sep 2001, 23:01 SDL_mutexV(3)
Synopsis
#include"SDL.h"#include"SDL_thread.h"intSDL_mutexV(SDL_mutex*mutex);
