summaryrefslogtreecommitdiff
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
commitaa8c80b5100f4b25d53db3cf911f6669f8b906ad (patch)
tree73cb1d343d08f41472490265552e6acb8267b7c3 /src/pkg
parenta67917471ff28c5e4c37ba1eca98f0a6ded14c68 (diff)
downloadgo-aa8c80b5100f4b25d53db3cf911f6669f8b906ad.tar.gz
runtime: disable StackCopyAlways
I forgot to clear this before submitting. TBR=khr CC=golang-codereviews https://codereview.appspot.com/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 facf0c5e8..20a37046f 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.