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
This appears to be caused by a Go bug in 64bit atomic operations on certain 32-bit platforms: golang/go#23345
Quote from sync/atomic bugs section:
On ARM, 386, and 32-bit MIPS, it is the caller's responsibility to arrange for 64-bit alignment of 64-bit words accessed atomically via the primitive atomic functions (types Int64 and Uint64 are automatically aligned). The first word in an allocated struct, array, or slice; in a global variable; or in a local variable (because the subject of all atomic operations will escape to the heap) can be relied upon to be 64-bit aligned.
The text was updated successfully, but these errors were encountered:
On Linux/armv7l:
This appears to be caused by a Go bug in 64bit atomic operations on certain 32-bit platforms: golang/go#23345
Quote from
sync/atomic
bugs section:The text was updated successfully, but these errors were encountered: