aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/stack.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-08 20:37:28 -0400
committerRuss Cox <rsc@golang.org>2014-09-08 20:37:28 -0400
commit815a843b6aff1a1db558514811bed4c78adce522 (patch)
treef32d0aebad3886c8a0410dc5b312744ac0be7d7d /src/runtime/stack.c
parent0133e0a208661c5eb4af9d30600f8632ed744b84 (diff)
downloadgo-815a843b6aff1a1db558514811bed4c78adce522.tar.xz
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
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.