type runtime.sudog
41 uses
runtime (current package)
chan.go#L54: first *sudog
chan.go#L55: last *sudog
chan.go#L292: func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
chan.go#L333: func sendDirect(t *_type, sg *sudog, src unsafe.Pointer) {
chan.go#L346: func recvDirect(t *_type, sg *sudog, dst unsafe.Pointer) {
chan.go#L607: func recv(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
chan.go#L774: func (q *waitq) enqueue(sgp *sudog) {
chan.go#L788: func (q *waitq) dequeue() *sudog {
chan.go#L829: func racesync(c *hchan, sg *sudog) {
chan.go#L839: func racenotify(c *hchan, idx uint, sg *sudog) {
mgc.go#L2275: var sg, sgnext *sudog
proc.go#L352: func acquireSudog() *sudog {
proc.go#L375: pp.sudogcache = append(pp.sudogcache, new(sudog))
proc.go#L390: func releaseSudog(s *sudog) {
proc.go#L417: var first, last *sudog
runtime2.go#L345: type sudog struct {
runtime2.go#L352: next *sudog
runtime2.go#L353: prev *sudog
runtime2.go#L375: parent *sudog // semaRoot binary tree
runtime2.go#L376: waitlink *sudog // g.waiting list or semaRoot
runtime2.go#L377: waittail *sudog // semaRoot
runtime2.go#L468: waiting *sudog // sudog structures this g is waiting on (that have a valid elem ptr); in lock order
runtime2.go#L616: sudogcache []*sudog
runtime2.go#L617: sudogbuf [128]*sudog
runtime2.go#L770: sudogcache *sudog
select.go#L234: sg *sudog
select.go#L237: sglist *sudog
select.go#L238: sgnext *sudog
select.go#L240: nextp **sudog
select.go#L333: sg = (*sudog)(gp.param)
select.go#L584: func (q *waitq) dequeueSudoG(sgp *sudog) {
sema.go#L42: treap *sudog // root of balanced tree of unique waiters.
sema.go#L79: func readyWithTime(s *sudog, traceskip int) {
sema.go#L234: func (root *semaRoot) queue(addr *uint32, s *sudog, lifo bool) {
sema.go#L240: var last *sudog
sema.go#L321: func (root *semaRoot) dequeue(addr *uint32) (found *sudog, now int64) {
sema.go#L392: func (root *semaRoot) rotateLeft(x *sudog) {
sema.go#L420: func (root *semaRoot) rotateRight(y *sudog) {
sema.go#L465: head *sudog
sema.go#L466: tail *sudog
sema.go#L586: for p, s := (*sudog)(nil), l.head; s != nil; p, s = s, s.next {
 |
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. |