mirror of
https://github.com/golang/go
synced 2024-11-22 01:24:42 -07:00
runtime: correct FixedStack value (fixes windows build)
Fixes #2068. R=rsc CC=golang-dev https://golang.org/cl/4705046
This commit is contained in:
parent
3f2cc8ba7e
commit
dde435587d
@ -71,7 +71,7 @@ enum {
|
||||
// If the amount needed for the splitting frame + StackExtra
|
||||
// is less than this number, the stack will have this size instead.
|
||||
StackMin = 4096,
|
||||
FixedStack = StackMin,
|
||||
FixedStack = StackMin + StackSystem,
|
||||
|
||||
// Functions that need frames bigger than this call morestack
|
||||
// unconditionally. That is, on entry to a function it is assumed
|
||||
|
Loading…
Reference in New Issue
Block a user