SDL_mutexV

Name

SDL_mutexV -- Unlock a mutex

Synopsis

uses
SDL;

function SDL_mutexV( mutex : PSDL_mutex ) : Integer;

Description

Unlocks the mutex, which was previously created with SDL_CreateMutex . Returns 0 on success, or -1 on an error.

SDL also defines a procedure SDL_UnlockMutex() that calls SDL_mutexV().

See Also

SDL_CreateMutex , SDL_mutexP