Channel整体结构
源码位置
位于src/runtime
下的chan.go
中。
Channel整体结构图
图源:https://i6448038.github.io/2019/04/11/go-channel/
Channel结构体
type hchan struct {
qcount uint // total data in the queue
dataqsiz uint // size of the circular queue
buf unsafe.Pointer // points to an array of dataqsiz elements
elemsize uint16
closed uint32
elemtype *_type // element type
sendx uint // send index
recvx uint // receive index
recvq waitq // list of recv waiters
sendq waitq // list of send waiters
// lock protects all fields in hchan, as well as several
// fields in sudogs blocked on this channel.
//
// Do not change another G's status while holding this lock
// (in particular, do not ready a G), as this can deadlock
// with stack shrinking.
lock mutex
}
我们可以看到,其中有一个buf空间,这个对应的是我们生成的有缓冲通道、无缓冲通道。recvq
和sendq
对应的是waitq
类型,其中主要存储的是发送、接受方的Goroutine。
waitq
&&sudog
waitq
:
type waitq struct