From 6a1bbca2b3129b18f7d7e63b51536da2e9afe9e2 Mon Sep 17 00:00:00 2001 From: cui fliter Date: Tue, 7 Nov 2023 17:35:46 +0800 Subject: runtime: add available godoc link Change-Id: Ifb4844efddcb0369b0302eeab72394eeaf5c8072 Reviewed-on: https://go-review.googlesource.com/c/go/+/540022 Reviewed-by: Michael Knyszek Auto-Submit: Michael Knyszek Reviewed-by: Heschi Kreinick TryBot-Result: Gopher Robot Run-TryBot: shuang cui LUCI-TryBot-Result: Go LUCI --- src/runtime/symtab.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/runtime/symtab.go') diff --git a/src/runtime/symtab.go b/src/runtime/symtab.go index 60adb37eac..87b687a196 100644 --- a/src/runtime/symtab.go +++ b/src/runtime/symtab.go @@ -13,7 +13,7 @@ import ( ) // Frames may be used to get function/file/line information for a -// slice of PC values returned by Callers. +// slice of PC values returned by [Callers]. type Frames struct { // callers is a slice of PCs that have not yet been expanded to frames. callers []uintptr @@ -70,9 +70,9 @@ type Frame struct { funcInfo funcInfo } -// CallersFrames takes a slice of PC values returned by Callers and +// CallersFrames takes a slice of PC values returned by [Callers] and // prepares to return function/file/line information. -// Do not change the slice until you are done with the Frames. +// Do not change the slice until you are done with the [Frames]. func CallersFrames(callers []uintptr) *Frames { f := &Frames{callers: callers} f.frames = f.frameStore[:0] @@ -642,7 +642,7 @@ func (md *moduledata) funcName(nameOff int32) string { return gostringnocopy(&md.funcnametab[nameOff]) } -// FuncForPC returns a *Func describing the function that contains the +// FuncForPC returns a *[Func] describing the function that contains the // given program counter address, or else nil. // // If pc represents multiple functions because of inlining, it returns -- cgit v1.3