From d67e7e3acff13d845f8952b45daf9b794fa4ad51 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 12 Jun 2013 15:22:26 -0400 Subject: 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 --- src/pkg/runtime/stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/runtime/stack.h') 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. -- cgit v1.3