sem_try_acquire() function
Attempt to acquire a permit from a semaphore without blocking This function will return false without blocking if no permits are available, otherwise it will acquire a permit and return true.
Arguments
sem
Pointer to semaphore structure
Return value
true if permit was acquired.