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
perf(allocator): reduce time Mutex lock is held in FixedSizeAllocatorPool::get (#17079)
Follow-on after #17023. Small perf optimization.
Minimize the time that the `Mutex` is locked, by dropping the `MutexGuard` before checking whether `pop()` returned `Some` or not , rather than after.
0 commit comments