]> Cypherpunks repositories - gostls13.git/commit
runtime: change PC, SP values in Stkframe, Panic, Defer from byte* to uintptr
authorRuss Cox <rsc@golang.org>
Mon, 1 Sep 2014 14:05:16 +0000 (10:05 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 1 Sep 2014 14:05:16 +0000 (10:05 -0400)
commit3de7ba1873b3efb0004d61147cc049dd42d8725d
tree37b004eabb1714149435d37ab319f85efb31d351
parentf16729781bc7bfe561658f520dcbffa5f81790c2
runtime: change PC, SP values in Stkframe, Panic, Defer from byte* to uintptr

uintptr is better when translating to Go,
and in a few places it's better in C too.

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews, iant, khr
https://golang.org/cl/138980043
src/pkg/runtime/heapdump.c
src/pkg/runtime/mgc0.c
src/pkg/runtime/panic.c
src/pkg/runtime/runtime.h
src/pkg/runtime/stack.c
src/pkg/runtime/traceback_arm.c
src/pkg/runtime/traceback_x86.c