You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible for guardian to implement something like Mutex::try_lock (try_take?), that doesn't block the thread if it can't take the mutex immediately? I have a situation where I have multiple mutexes that may or may not be blocked, and I want to iterate through them to find an open lock. With guardian that is currently not possible, but it would be nice to get the lifetime-free lock guard.
The text was updated successfully, but these errors were encountered:
Is it possible for guardian to implement something like
Mutex::try_lock
(try_take?), that doesn't block the thread if it can't take the mutex immediately? I have a situation where I have multiple mutexes that may or may not be blocked, and I want to iterate through them to find an open lock. With guardian that is currently not possible, but it would be nice to get the lifetime-free lock guard.The text was updated successfully, but these errors were encountered: