mirror of
https://github.com/golang/go
synced 2024-11-22 04:34:39 -07:00
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
This commit is contained in:
parent
a506c96ab2
commit
6bc0346e28
@ -58,7 +58,7 @@ enum {
|
|||||||
// purposes like signal handling. Used on Windows because
|
// purposes like signal handling. Used on Windows because
|
||||||
// it does not use a separate stack.
|
// it does not use a separate stack.
|
||||||
#ifdef __WINDOWS__
|
#ifdef __WINDOWS__
|
||||||
StackSystem = 2048,
|
StackSystem = 512 * sizeof(uintptr),
|
||||||
#else
|
#else
|
||||||
StackSystem = 0,
|
StackSystem = 0,
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user