mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-01-29 02:57:00 -06:00
ccdd84a778
As reported by tsan, SelectThreads could write to is_context_switch_pending holding a mutex while SwitchToCurrent reads it without holding any. It is assumed that the author didn't want an atomic here, so the code is reordered so that whenever is_context_switch_pending is read inside SwitchToContext, the mutex is locked.