recursive_mutex_enter_timeout_us() function
Wait for recursive mutex with timeout Wait for up to the specific time to take ownership of the recursive 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 mutex structure
timeout_us
The timeout in microseconds.
Return value
true if the recursive mutex (now) owned, false if timeout occurred before ownership could be granted