diff options
| author | Russ Cox <rsc@golang.org> | 2014-09-05 17:00:32 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2014-09-05 17:00:32 -0400 |
| commit | 277ef8fa07411231761426298c8e489ddef8ef67 (patch) | |
| tree | b6ed540868341e65978fc6375396b6a9c4f59fb7 /src | |
| parent | f8f630f5ecb5e30c9feadab5277f393c58da71f6 (diff) | |
| download | go-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')
| -rw-r--r-- | src/pkg/runtime/stack.c | 2 |
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. |
