sem_acquire_timeout_us() function
Acquire a permit from a semaphore, with timeout This function will block and wait if no permits are available, until the defined timeout has been reached. If the timeout is reached the function will return false, otherwise it will return true.
Arguments
sem
Pointer to semaphore structure
timeout_us
Time to wait to acquire the semaphore, in microseconds.
Return value
false if timeout reached, true if permit was acquired.