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
If one worker is fast and the other slow, it is possible for a the fast worker to loop multiple times during a single I/O callback, calling mStartWorkingSemaphore.wait() and decrementing the semaphore several times. I've verified that this occurs when using more than two threads on an iPhone.
This can be fixed by alternating between two start working semaphores.
The text was updated successfully, but these errors were encountered:
If one worker is fast and the other slow, it is possible for a the fast worker to loop multiple times during a single I/O callback, calling
mStartWorkingSemaphore.wait()
and decrementing the semaphore several times. I've verified that this occurs when using more than two threads on an iPhone.This can be fixed by alternating between two start working semaphores.
The text was updated successfully, but these errors were encountered: