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
maitake-sync's async Mutex and RwLock are guaranteed to be fair, because they use FIFO wait queues. however, the spin module's blocking locks are not fair. it would be nice to have a fair FIFO spinlock in maitake-sync, in addition to our current unfair mutex. we could implement a fair spinlock using a ticket lock.
The text was updated successfully, but these errors were encountered:
maitake-sync
's asyncMutex
andRwLock
are guaranteed to be fair, because they use FIFO wait queues. however, thespin
module's blocking locks are not fair. it would be nice to have a fair FIFO spinlock inmaitake-sync
, in addition to our current unfair mutex. we could implement a fair spinlock using a ticket lock.The text was updated successfully, but these errors were encountered: