Commit 6bc0346e authored by Hector Chu's avatar Hector Chu Committed by Alex Brainman

runtime: increase stack system space on windows/amd64

gotest src/pkg/exp/template/html was crashing because the exception handler overflowed the goroutine stack.

R=alex.brainman, golang-dev
CC=golang-dev
https://golang.org/cl/5031049
parent a506c96a
......@@ -58,7 +58,7 @@ enum {
// purposes like signal handling. Used on Windows because
// it does not use a separate stack.
#ifdef __WINDOWS__
StackSystem = 2048,
StackSystem = 512 * sizeof(uintptr),
#else
StackSystem = 0,
#endif
......
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