1
0
mirror of https://github.com/golang/go synced 2024-10-02 18:18:33 -06:00

runtime: fix plan9/amd64 build?

The only thing I can see that is really Plan 9-specific
is that the stack pointer used for signal handling used
to have more mapped memory above it.
Specifically it used to have at most 88 bytes (StackTop),
so change the allocation of a 40-byte frame to a 128-byte frame.

No idea if this will work, but worth a try.

Note that "fix" here means get it back to timing out
instead of crashing.

TBR=iant
CC=golang-codereviews
https://golang.org/cl/142840043
This commit is contained in:
Russ Cox 2014-09-09 17:16:31 -04:00
parent ee6c6d96b6
commit f9829e92e1

View File

@ -194,7 +194,7 @@ TEXT runtime·sigtramp(SB),NOSPLIT,$0
MOVQ BP, SP
// make room for args and g
SUBQ $40, SP
SUBQ $128, SP
// save g
MOVQ g(AX), BP