Man page - sdl_trywaitsemaphore(3)
Packages contains this manual
Manual
SDL_TryWaitSemaphore
NAMEHEADER FILE
SYNOPSIS
DESCRIPTION
FUNCTION PARAMETERS
RETURN VALUE
AVAILABILITY
SEE ALSO
NAME
SDL_TryWaitSemaphore - See if a semaphore has a positive value and decrement it if it does.
HEADER FILE
Defined in SDL3/SDL_mutex.h
SYNOPSIS
#include "SDL3/SDL.h"
bool SDL_TryWaitSemaphore(SDL_Semaphore *sem);
DESCRIPTION
This function checks to see if the semaphore pointed to by sem has a positive value and atomically decrements the semaphore value if it does. If the semaphore doesnβt have a positive value, the function immediately returns false.
FUNCTION PARAMETERS
|
sem |
the semaphore to wait on. |
RETURN VALUE
Returns true if the wait succeeds, false if the wait would block.
AVAILABILITY
This function is available since SDL 3.2.0.
SEE ALSO
β’ (3), SDL_SignalSemaphore (3), β’ (3), SDL_WaitSemaphore (3), β’ (3), SDL_WaitSemaphoreTimeout (3)