上卷 程序设计
中卷 标准库
- bufio 1.18
- bytes 1.18
- io 1.18
- container 1.18
- encoding 1.18
- crypto 1.18
- hash 1.18
- index 1.18
- sort 1.18
- context 1.18
- database 1.18
- connection
- query
- queryrow
- exec
- prepare
- transaction
- scan & null
- context
- tcp
- udp
- http
- server
- handler
- client
- h2、tls
- url
- rpc
- exec
- signal
- embed 1.18
- plugin 1.18
- reflect 1.18
- runtime 1.18
- KeepAlived
- ReadMemStats
- SetFinalizer
- Stack
- sync 1.18
- atomic
- mutex
- rwmutex
- waitgroup
- cond
- once
- map
- pool
- copycheck
- nocopy
- unsafe 1.18
- fmt 1.18
- log 1.18
- math 1.18
- time 1.18
- timer
下卷 运行时
源码剖析
附录
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
Stack
获取调用堆栈(call stack)信息。
func main() { done := make(chan struct{}) go func() { defer close(done) buf := make([]byte, 2<<10) n := runtime.Stack(buf, true) // false: 仅当前 G。 println(string(buf[:n])) }() <- done } /* goroutine 17 [running]: main.main.func1() test/main.go:22 +0x7e created by main.main test/main.go:18 +0x6a goroutine 1 [chan receive]: main.main() test/main.go:26 +0x76 */
利用 Caller
和 Callers
获取栈帧(stack frame)信息。
参数
skip
表示向外跳过的栈帧数。
0
: 调用Caller
的函数(test
)。1
: 是main
函数。返回
pc
表示PC/IP
值。
package main import ( "fmt" "log" "runtime" ) //go:noinline func test() { pc, file, line, ok := runtime.Caller(0) if !ok { log.Fatal() } fn := runtime.FuncForPC(pc) fmt.Printf("name: %s\nfile: %s:%d\n", fn.Name(), file, line) } func main() { test() } /* name: main.test file: test/main.go:11 */
注意, Caller(0)
表示其调用者( test
),而 Callers(0)
第一帧代表其自身。
package main import ( "runtime" ) //go:noinline func test() { buf := make([]uintptr, 100) n := runtime.Callers(0, buf) frames := runtime.CallersFrames(buf[:n]) for { f, more := frames.Next() println(f.Function, f.File, f.Line) if !more { break } } } func main() { test() } /* runtime.Callers runtime/extern.go 235 main.test test/main.go 10 main.main test/main.go 22 runtime.main runtime/proc.go 250 runtime.goexit runtime/asm_amd64.s 1571 */
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论