From 277ef8fa07411231761426298c8e489ddef8ef67 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 5 Sep 2014 17:00:32 -0400 Subject: [PATCH] runtime: disable StackCopyAlways I forgot to clear this before submitting. TBR=khr CC=golang-codereviews https://golang.org/cl/132640044 --- src/pkg/runtime/stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.48.1