SDL_TryWaitSemaphore
See if a semaphore has a positive value and decrement it if it does.
- Provided by: libsdl3-doc (Version: 3.2.20+ds-2)
- Source: libsdl3
- Report a bug
See if a semaphore has a positive value and decrement it if it does.
#include <SDL3/SDL_mutex.h>
bool SDL_TryWaitSemaphore(SDL_Semaphore *sem);
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.
Returns true if the wait succeeds, false if the wait would block.
This function is available since SDL 3.2.0.
SDL_SignalSemaphore(3), SDL_WaitSemaphore(3), SDL_WaitSemaphoreTimeout(3)