recursive_mutex_enter_timeout_ms() 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 recursive mutex structure
timeout_ms
The timeout in milliseconds.
Return value
true if the recursive mutex (now) owned, false if timeout occurred before ownership could be granted