aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/stack.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-08 17:23:40 -0400
committerRuss Cox <rsc@golang.org>2014-09-08 17:23:40 -0400
commit318294286a2d92b24dc98553ac3913cf80c98a7f (patch)
tree24e23146a81f4ed6885d222ac2ac707875a49007 /src/runtime/stack.c
parent9e7c22938cb3c7af9dc02447eebf4ab31bc40cc1 (diff)
downloadgo-318294286a2d92b24dc98553ac3913cf80c98a7f.tar.xz
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
Diffstat (limited to 'src/runtime/stack.c')
-rw-r--r--src/runtime/stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/stack.c b/src/runtime/stack.c
index bb8c7ac11b..ca0eed06f9 100644
--- a/src/runtime/stack.c
+++ b/src/runtime/stack.c
@@ -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.