aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/stack.h
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-12-05 19:50:09 -0500
committerRuss Cox <rsc@golang.org>2014-12-05 19:50:09 -0500
commitdb406241107353323b5cf484d6abd05c4722a104 (patch)
treec09a318f25cee9dfa4eadc07cc7edd28a52c9775 /src/runtime/stack.h
parentfa6c54953c756c461073119f02e70930c753bac1 (diff)
downloadgo-db406241107353323b5cf484d6abd05c4722a104.tar.xz
[dev.garbage] runtime: raise StackGuard limit for Windows (again)
640 bytes ought to be enough for anybody. We'll bring this back down before Go 1.5. That's issue 9214. TBR=rlh CC=golang-codereviews https://golang.org/cl/188730043
Diffstat (limited to 'src/runtime/stack.h')
-rw-r--r--src/runtime/stack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/stack.h b/src/runtime/stack.h
index 0099d05c23..0b2cd56a92 100644
--- a/src/runtime/stack.h
+++ b/src/runtime/stack.h
@@ -17,7 +17,7 @@ enum {
#endif // Windows
StackBig = 4096,
- StackGuard = 512 + StackSystem,
+ StackGuard = 640 + StackSystem,
StackSmall = 128,
StackLimit = StackGuard - StackSystem - StackSmall,
};