diff options
| author | Russ Cox <rsc@golang.org> | 2014-11-24 12:07:11 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2014-11-24 12:07:11 -0500 |
| commit | b8540fc28867623b23c23e97108a6e975e8a49e7 (patch) | |
| tree | e5c56e6595f5ebf90fc796a7699e53da94076c84 /src/runtime/stack2.go | |
| parent | 273507aa8f17b2b619934ae63c99a2e31a4df5e2 (diff) | |
| parent | a236804c764c9aa1fb293c24be9c571de5795d05 (diff) | |
| download | go-b8540fc28867623b23c23e97108a6e975e8a49e7.tar.xz | |
[dev.garbage] all: merge dev.cc (493ad916c3b1) into dev.garbage
TBR=austin
CC=golang-codereviews
https://golang.org/cl/179290043
Diffstat (limited to 'src/runtime/stack2.go')
| -rw-r--r-- | src/runtime/stack2.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/stack2.go b/src/runtime/stack2.go index c3718c205e..e50b32c784 100644 --- a/src/runtime/stack2.go +++ b/src/runtime/stack2.go @@ -59,7 +59,7 @@ const ( // to each stack below the usual guard area for OS-specific // purposes like signal handling. Used on Windows and on // Plan 9 because they do not use a separate stack. - _StackSystem = _Windows*512*ptrSize + _Plan9*512 + _StackSystem = goos_windows*512*ptrSize + goos_plan9*512 // The minimum size of stack used by Go code _StackMin = 2048 |
