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
The lazy initialization of fast_clock_id can race when two uv loops are spawned from the same process. The race (introduced in 21c37a7) seems harmless as the initialization seems deterministic, but it makes TSAN complain.
The lazy initialization of
fast_clock_idcan race when two uv loops are spawned from the same process. The race (introduced in 21c37a7) seems harmless as the initialization seems deterministic, but it makes TSAN complain.