runtime.sudog.waitlink (field)
20 uses
runtime (current package)
chan.go#L245: mysg.waitlink = nil
chan.go#L564: mysg.waitlink = nil
proc.go#L403: if s.waitlink != nil {
runtime2.go#L376: waitlink *sudog // g.waiting list or semaRoot
select.go#L84: for sg := gp.waiting; sg != nil; sg = sg.waitlink {
select.go#L311: nextp = &sg.waitlink
select.go#L345: for sg1 := gp.waiting; sg1 != nil; sg1 = sg1.waitlink {
select.go#L370: sgnext = sglist.waitlink
select.go#L371: sglist.waitlink = nil
sema.go#L260: s.waitlink = t
sema.go#L272: t.waitlink = s
sema.go#L274: t.waittail.waitlink = s
sema.go#L277: s.waitlink = nil
sema.go#L341: if t := s.waitlink; t != nil {
sema.go#L354: if t.waitlink != nil {
sema.go#L360: s.waitlink = nil
stack.go#L762: for s := gp.waiting; s != nil; s = s.waitlink {
stack.go#L775: for sg := gp.waiting; sg != nil; sg = sg.waitlink {
stack.go#L794: for sg := gp.waiting; sg != nil; sg = sg.waitlink {
stack.go#L826: for sg := gp.waiting; sg != nil; sg = sg.waitlink {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |