1
0
mirror of https://github.com/golang/go synced 2024-11-21 22:04:39 -07:00

runtime: add runtime· prefix to showframe

R=ken2
CC=golang-dev
https://golang.org/cl/4978042
This commit is contained in:
Russ Cox 2011-08-29 10:55:21 -04:00
parent 683df29f7c
commit 3693cd2988
3 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ runtime·gentraceback(byte *pc0, byte *sp, byte *lr0, G *g, int32 skip, uintptr
else if(pcbuf != nil)
pcbuf[n++] = pc;
else {
if(showframe(f)) {
if(runtime·showframe(f)) {
// Print during crash.
// main(0x1, 0x2, 0x3)
// /home/rsc/go/src/runtime/x.go:23 +0xf

View File

@ -117,7 +117,7 @@ runtime·gentraceback(byte *pc0, byte *sp, byte *lr0, G *g, int32 skip, uintptr
else if(pcbuf != nil)
pcbuf[n++] = pc;
else {
if(showframe(f)) {
if(runtime·showframe(f)) {
// Print during crash.
// main(0x1, 0x2, 0x3)
// /home/rsc/go/src/runtime/x.go:23 +0xf

View File

@ -496,7 +496,7 @@ contains(String s, int8 *p)
}
bool
showframe(Func *f)
runtime·showframe(Func *f)
{
// return 1; // for debugging - show all frames
return contains(f->name, ".") && !hasprefix(f->name, "runtime.");