See if a semaphore has a positive value and decrement it if it does.
Defined in <SDL3/SDL_mutex.h>
bool SDL_TryWaitSemaphore(SDL_Semaphore *sem);
SDL_Semaphore * | sem | the semaphore to wait on. |
(bool) Returns true if the wait succeeds, false if the wait would block.
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.
This function is available since SDL 3.1.3.