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
Waits for Apple to expose a public API for futex/atomic-wait
Implements it as a global pool containing mutexes and condition variables
The last option sounds like the only option I can to do something. But, the most common use case for latch is waiting without timeout. The last option will significantly increase the code size for a rare case.
The text was updated successfully, but these errors were encountered:
For now,
futex
andsync
(withatomic-wait
) implementation does not have support for waiting with a timeout.See also m-ou-se/atomic-wait#4
There have two solutions:
The last option sounds like the only option I can to do something. But, the most common use case for latch is waiting without timeout. The last option will significantly increase the code size for a rare case.
The text was updated successfully, but these errors were encountered: