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
diff --git a/src/pkg/runtime/stack.h b/src/pkg/runtime/stack.h
index 44d5533..4832338 100644
--- a/src/pkg/runtime/stack.h
+++ b/src/pkg/runtime/stack.h
@@ -58,7 +58,7 @@
// 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