recursive_mutex_enter_block_until() function
Wait for mutex until a specific time Wait until the specific time to take ownership of the mutex. If the caller already has ownership of the mutex or can be granted ownership of the mutex before the timeout expires, then true will be returned and the caller will own the mutex, otherwise false will be returned and the caller will NOT own the mutex.
Arguments
mtx
Pointer to recursive mutex structure
until
The time after which to return if the caller cannot be granted ownership of the mutex
Return value
true if the recursive mutex (now) owned, false if timeout occurred before ownership could be granted