1
0
mirror of https://github.com/golang/go synced 2024-11-11 21:10:21 -07:00

runtime: enable StackCopyAlways

Let's see how close we are to this being ready.
Will roll back if it breaks any builds in non-trivial ways.

LGTM=r, khr
R=iant, khr, r
CC=golang-codereviews
https://golang.org/cl/138200043
This commit is contained in:
Russ Cox 2014-09-08 17:23:40 -04:00
parent 9e7c22938c
commit 318294286a

View File

@ -26,7 +26,7 @@ enum
StackCache = 1,
StackCopyAlways = 0, // expect to be able to copy stacks 100% of the time
StackCopyAlways = 1, // expect to be able to copy stacks 100% of the time
};
// Global pool of spans that have free stacks.