sem_acquire_block_until() function
Wait to acquire a permit from a semaphore until a specific time This function will block and wait if no permits are available, until the specified timeout time. If the timeout is reached the function will return false, otherwise it will return true.
Arguments
sem
Pointer to semaphore structure
until
The time after which to return if the sem is not available.
Return value
true if permit was acquired, false if the until time was reached before acquiring.