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
Use an intrusive list to keep track of outstanding waits instead of pushing WFMO callers to a per-event std::vector. This will reduce the dependence on the C++ standard library (and might make the code C-compatible out-of-the-box), reduce allocations, and improve performance.
The text was updated successfully, but these errors were encountered:
Use an intrusive list to keep track of outstanding waits instead of pushing WFMO callers to a per-event
std::vector
. This will reduce the dependence on the C++ standard library (and might make the code C-compatible out-of-the-box), reduce allocations, and improve performance.The text was updated successfully, but these errors were encountered: