mutex_try_enter_block_until() function
Attempt to take ownership of a mutex until the specified time If the mutex wasn't owned, this method will immediately claim the mutex for the caller and return true. If the mutex is owned by the caller, this method will immediately return false, If the mutex is owned by someone else, this method will try to claim it until the specified time, returning true if it succeeds, or false on timeout
Arguments
mtx
Pointer to mutex structure
until
The time after which to return if the caller cannot be granted ownership of the mutex
Return value
true if mutex now owned, false otherwise