diff options
| author | cui fliter <imcusg@gmail.com> | 2023-11-07 17:35:46 +0800 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-11-08 16:59:11 +0000 |
| commit | 6a1bbca2b3129b18f7d7e63b51536da2e9afe9e2 (patch) | |
| tree | e7a99852f607ed39fa16619d28633f5a089a9526 /src/runtime/symtab.go | |
| parent | fa903593fb7c40a5745817b68d9a71ab6b934009 (diff) | |
| download | go-6a1bbca2b3129b18f7d7e63b51536da2e9afe9e2.tar.xz | |
runtime: add available godoc link
Change-Id: Ifb4844efddcb0369b0302eeab72394eeaf5c8072
Reviewed-on: https://go-review.googlesource.com/c/go/+/540022
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: shuang cui <imcusg@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/runtime/symtab.go')
| -rw-r--r-- | src/runtime/symtab.go | 8 |
1 files changed, 4 insertions, 4 deletions
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 |
