logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_LockMutex - Lock the mutex.

Availability

       This function is available since SDL 3.2.0.

Description

       This  will block until the mutex is available, which is to say it is in the unlocked state and the OS has
       chosen the caller as the next thread to lock it. Of all threads waiting to lock the mutex, only  one  may
       do so at a time.

       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").

       This function does not fail; if mutex is NULL, it will return immediately having locked nothing.  If  the
       mutex is valid, this function will always block until it can lock the mutex, and return with it locked.

Function Parameters

mutex  the mutex to lock.

Name

       SDL_LockMutex - Lock the mutex.

See Also

SDL_TryLockMutex(3), SDL_UnlockMutex(3)

Simple Directmedia Layer                           SDL 3.2.20                                   SDL_LockMutex(3)

Synopsis

#include<SDL3/SDL_mutex.h>voidSDL_LockMutex(SDL_Mutex*mutex);

See Also