当我在go中探索互斥锁功能实现时。
func (m *Mutex) Lock()
我找到了一个在没有函数体的情况下调用的函数。
func runtime_canSpin(i int) bool // in sync/runtime.go
func runtime_doSpin()
我想找到代码并使用这些方法登录。 但我只能在https://golang.org/ref/spec#Function_declarations
中找到类似的内容A function declaration may omit the body. Such a declaration provides the signature for a function implemented outside Go, such as an assembly routine.
我该怎么做才能找到隐藏的代码?