recursive_mutex_try_enter() function
Attempt to take ownership of a recursive mutex If the mutex wasn't owned or was owned by the caller, this will claim the mutex and return true. Otherwise (if the mutex was already owned by another owner) this will return false and the caller will NOT own the mutex.
Arguments
mtx
Pointer to recursive mutex structure
owner_out
If mutex was already owned by another owner, and this pointer is non-zero, it will be filled in with the owner id of the current owner of the mutex
Return value
true if the recursive mutex (now) owned, false otherwise