From: Russ Cox Date: Fri, 5 Sep 2014 21:00:32 +0000 (-0400) Subject: runtime: disable StackCopyAlways X-Git-Tag: go1.4beta1~516 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=277ef8fa07411231761426298c8e489ddef8ef67;p=gostls13.git runtime: disable StackCopyAlways I forgot to clear this before submitting. TBR=khr CC=golang-codereviews https://golang.org/cl/132640044 --- 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.