aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/stack.h
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2013-06-12 15:22:26 -0400
committerRuss Cox <rsc@golang.org>2013-06-12 15:22:26 -0400
commitd67e7e3acff13d845f8952b45daf9b794fa4ad51 (patch)
tree8fec98d66622c42db3ba6862e55c671e2f98079a /src/pkg/runtime/stack.h
parenta8ad859c30c8d4c30c38ac41d858c9030d025ddd (diff)
downloadgo-d67e7e3acff13d845f8952b45daf9b794fa4ad51.tar.xz
runtime: add lr, ctxt, ret to Gobuf
Add gostartcall and gostartcallfn. The old gogocall = gostartcall + gogo. The old gogocallfn = gostartcallfn + gogo. R=dvyukov, minux.ma CC=golang-dev https://golang.org/cl/10036044
Diffstat (limited to 'src/pkg/runtime/stack.h')
-rw-r--r--src/pkg/runtime/stack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/stack.h b/src/pkg/runtime/stack.h
index 0d36c94afb..a349c1f1be 100644
--- a/src/pkg/runtime/stack.h
+++ b/src/pkg/runtime/stack.h
@@ -104,7 +104,7 @@ enum {
// The assumed size of the top-of-stack data block.
// The actual size can be smaller than this but cannot be larger.
// Checked in proc.c's runtime.malg.
- StackTop = 72,
+ StackTop = 96,
// Goroutine preemption request.
// Stored into g->stackguard0 to cause split stack check failure.