1SDL_mutexV(3) SDL API Reference SDL_mutexV(3)
23
4
NAME
6SDL_mutexV - Unlock a mutex
7
SYNOPSIS
9#include "SDL.h" #include "SDL_thread.h"
1011
int SDL_mutexV(SDL_mutex *mutex);
12
DESCRIPTION
14Unlocks the mutex, which was previously created with SDL_CreateMutex.
15Returns 0 on success, or -1 on an error.
1617
SDL also defines a macro #define SDL_UnlockMutex(m) SDL_mutexV(m).
18
SEE ALSO
20SDL_CreateMutex, SDL_mutexP
2122
23
24
SDL Tue 11 Sep 2001, 23:01 SDL_mutexV(3)