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
Probably a rare edge-case, but the new CoreLocal design around a Cell is not perfectly sound, as it is possible to call get multiple times. This gives an opportunity for races, as accesses to the cell are not atomic and an modifications of the contained value could be interrupted.
It is probably sufficient to replace it with an interrupt safe version.
The text was updated successfully, but these errors were encountered:
Probably a rare edge-case, but the new
CoreLocal
design around aCell
is not perfectly sound, as it is possible to callget
multiple times. This gives an opportunity for races, as accesses to the cell are not atomic and an modifications of the contained value could be interrupted.It is probably sufficient to replace it with an interrupt safe version.
The text was updated successfully, but these errors were encountered: