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
Replace busy wait in async loop with a Semaphore (#80)
Use a semaphore to concurrency limit the scheduling of new tasks rather
than a busy wait. Additionally reduce async sleep at the end of the loop
iteration as that is sufficient to cause preemption. As a side effect
#70 is fixed by this PR since the offending code has been reworked.
Closes#70
0 commit comments