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
Utility: add a Windows path to the synchronisation support (#603)
Use a `SRWLOCK` on Windows to support locking. Slim Reader-Writer locks
are lightweight mutexes that closely resemble `pthread_mutex_t` in
functionality. While possible to use `WaitOnAddress` to implement
`os_unfair_lock`, that would be more complex and a slightly heavier
mutex as a starting point seems reasonable. If it turns out that the
performance really requires an even lighter weight locking primitive, we
can refine this to `WaitOnAddress` subsequently.
0 commit comments