Go常见问题解答说“没有goroutine ID”,但我们可以从runtime.Stack中获取它。它是什么?
go faq 回答了“为什么没有 goroutine id?”的问题
goroutines do not have names; they are just anonymous workers. they expose no unique identifier, name, or data structure to the programmer.
https://go.dev/doc/faq#no_goroutine_id
我不相信“它们没有暴露唯一标识符”的解释,因为看起来我们可以通过使用runtime.stack()来获取goroutine id。
问题
go faq 答案中的“唯一标识符”和runtime.stack提取的goroutine id有什么区别?
为什么 go faq 回答“他们没有公开唯一标识符”?
我想清楚地理解“为什么没有goroutine id?”回答!
runtime.stack() 似乎提供了 goroutine id。 https://go.dev/play/p/5b6fd7c8s6-
package main
import (
"bytes"
"errors"
"fmt"
"runtime"
"strconv"
)
func main() {
fmt.Println(goid())
done := make(chan struct{})
go func() {
fmt.Println(goid())
done <- struct{}{}
}()
go func() {
fmt.Println(goid())
done <- struct{}{}
}()
<-done
<-done
close(done)
}
var (
goroutinePrefix = []byte("goroutine ")
errBadStack = errors.New("invalid runtime.Stack output")
)
func goid() (int, error) {
buf := make([]byte, 32)
n := runtime.Stack(buf, false)
buf = buf[:n]
// goroutine 1 [running]: ...
buf, ok := bytes.CutPrefix(buf, goroutinePrefix)
if !ok {
return 0, errBadStack
}
i := bytes.IndexByte(buf, ' ')
if i < 0 {
return 0, errBadStack
}
return strconv.Atoi(string(buf[:i]))
}
而且,还有另一种方法通过 ebpf 获取 goroutine id。
如何使用ebpf获取goroutine id
正确答案
Go常见问题解答中的“唯一标识符”和runtime.Stack提取的goroutine id有什么区别?
常见问题解答指出,goroutines 不会向程序员公开唯一的标识符、名称或数据结构。
运行时确实需要一种方法来识别 Goroutine,但没有支持的方法来获取该标识符。
Go文档没有指定runtime.Stack返回的堆栈跟踪的格式或goroutine编号的含义。问题中的代码现在可能会检索唯一的 id,但不能保证该代码将来也会这样做。
以上就是Go常见问题解答说“没有goroutine ID”,但我们可以从runtime.Stack中获取它。它是什么?的详细内容,更多请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
Go常见问题解答说“没有goroutine ID”,但我们可以从runtime.Stack中获取它。它是什么?
下载Word文档到电脑,方便收藏和打印~