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
https://golang.org/cl/11502 fixes a race in concurrent GC by delaying the freeing of large stack spans until the end of mark termination. However, it's fine to reuse this memory for other stacks, as long as the span itself remains a stack span. We do this for small stacks because there's already a cache free small stacks. For 1.6, consider adding a similar mechanism that lets us reuse large stack spans and free only those that remain unused at the end of mark termination.
https://golang.org/cl/11502 fixes a race in concurrent GC by delaying the freeing of large stack spans until the end of mark termination. However, it's fine to reuse this memory for other stacks, as long as the span itself remains a stack span. We do this for small stacks because there's already a cache free small stacks. For 1.6, consider adding a similar mechanism that lets us reuse large stack spans and free only those that remain unused at the end of mark termination.
@randall77 @rsc @RLH
The text was updated successfully, but these errors were encountered: