Closed bertschinger closed 2 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 92.25%. Comparing base (
456efe8
) to head (efda2de
). Report is 1 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
The steal() macro searches a contiguous range of worker thread IDs. In practice, however, all users call it twice to "loop around" and search the entire set of worker threads.
Rather than make every caller code this looping behavior, steal() can implement the loop around itself, and then each user only needs to call it once.