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_TryLockMutex - Try to lock a mutex without blocking.

Availability

       This function is available since SDL 3.2.0.

Description

       This  works  just  like  SDL_LockMutex (), but if the mutex is not available, this function returns false
       immediately.

       This technique is useful if you need exclusive access to a resource but don't want to wait  for  it,  and
       will return to it to try again later.

       This function returns true if passed a NULL mutex.

Function Parameters

mutex  the mutex to try to lock.

Header File

       Defined in SDL3/SDL_mutex.h

Name

       SDL_TryLockMutex - Try to lock a mutex without blocking.

Return Value

       Returns true on success, false if the mutex would block.

See Also

(3), SDL_LockMutex(3), (3), SDL_UnlockMutex(3)

Simple Directmedia Layer                           SDL 3.2.10                                SDL_TryLockMutex(3)

Synopsis

#include"SDL3/SDL.h"boolSDL_TryLockMutex(SDL_Mutex*mutex);

See Also