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 function updating the current ticker value does not do it atomically, as a result concurrent updates of the ticker may corrupt the ticker value. This may happen if multiples thread read concurrently the ticker value.
Protecting the data structure from concurrent updates with a critical section may be a solution.