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
A send on an unbuffered channel to a blocked receiver writes directly to the receiver's stack. This violates the assumption made by the garbage collector that all writes to a stack happen while the receiver is executing and go through write barriers. This causes missed writes and incorrect collection of data.
The text was updated successfully, but these errors were encountered:
A send on an unbuffered channel to a blocked receiver writes directly to the receiver's stack. This violates the assumption made by the garbage collector that all writes to a stack happen while the receiver is executing and go through write barriers. This causes missed writes and incorrect collection of data.
The text was updated successfully, but these errors were encountered: