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
Do you want something like futures_locks::Mutex, but tailored for fibers-rs?
Then unfortunately I don't think that there's a library for this particular purpose. I don't think futures_locks::Mutex works either because fibers-rs uses its own mechanism for task scheduling.
yes the problem is if there is a lock in normal version , the thread is suspended until signal notification instead in fibers scheduler it might be swiched to another fiber. The perfomance is higher . So i have to realize a custom lock library pratically
How do you handle a mutex with fibers? There is a library for fibers mutex?
The text was updated successfully, but these errors were encountered: