1
0
mirror of https://github.com/golang/go synced 2024-10-02 18:18:33 -06:00

runtime: enable StackCopyAlways

It worked at CL 134660043 on the builders,
so I believe it will stick this time.

LGTM=bradfitz
R=khr, bradfitz
CC=golang-codereviews
https://golang.org/cl/141280043
This commit is contained in:
Russ Cox 2014-09-08 20:37:28 -04:00
parent 0133e0a208
commit 815a843b6a

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.