aboutsummaryrefslogtreecommitdiff
path: root/src/pkg
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-05 17:00:32 -0400
committerRuss Cox <rsc@golang.org>2014-09-05 17:00:32 -0400
commit277ef8fa07411231761426298c8e489ddef8ef67 (patch)
treeb6ed540868341e65978fc6375396b6a9c4f59fb7 /src/pkg
parentf8f630f5ecb5e30c9feadab5277f393c58da71f6 (diff)
downloadgo-277ef8fa07411231761426298c8e489ddef8ef67.tar.xz
runtime: disable StackCopyAlways
I forgot to clear this before submitting. TBR=khr CC=golang-codereviews https://golang.org/cl/132640044
Diffstat (limited to 'src/pkg')
-rw-r--r--src/pkg/runtime/stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/stack.c b/src/pkg/runtime/stack.c
index facf0c5e82..20a37046f9 100644
--- a/src/pkg/runtime/stack.c
+++ b/src/pkg/runtime/stack.c
@@ -26,7 +26,7 @@ enum
StackCache = 1,
- StackCopyAlways = 1, // expect to be able to copy stacks 100% of the time
+ StackCopyAlways = 0, // expect to be able to copy stacks 100% of the time
};
// Global pool of spans that have free stacks.