Commit f50a8705 authored by Keith Randall's avatar Keith Randall

runtime: disable stack copying

TBR=dvyukov

TBR=dvyukov
CC=golang-codereviews
https://golang.org/cl/69080045
parent 092dd4be
......@@ -174,6 +174,7 @@ runtime·schedinit(void)
procresize(procs);
runtime·copystack = runtime·precisestack;
runtime·copystack = false; // TODO: remove
p = runtime·getenv("GOCOPYSTACK");
if(p != nil && !runtime·strcmp(p, (byte*)"0"))
runtime·copystack = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment