]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: enable StackCopyAlways
authorRuss Cox <rsc@golang.org>
Tue, 9 Sep 2014 00:37:28 +0000 (20:37 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 9 Sep 2014 00:37:28 +0000 (20:37 -0400)
It worked at CL 134660043 on the builders,
so I believe it will stick this time.

LGTM=bradfitz
R=khr, bradfitz
CC=golang-codereviews
https://golang.org/cl/141280043

src/runtime/stack.c

index bb8c7ac11b8a9b0bc4b90770f0a24f89d6b72568..ca0eed06f983b773942613579b30b2136230369c 100644 (file)
@@ -26,7 +26,7 @@ enum
 
        StackCache = 1,
        
-       StackCopyAlways = 0,    // expect to be able to copy stacks 100% of the time
+       StackCopyAlways = 1,    // expect to be able to copy stacks 100% of the time
 };
 
 // Global pool of spans that have free stacks.