runtime.mspan.next (field)
17 uses
runtime (current package)
mheap.go#L383: next *mspan // next span in list, or nil if none
mheap.go#L1527: span.next = nil
mheap.go#L1562: list.first = span.next
mheap.go#L1564: span.prev.next = span.next
mheap.go#L1569: span.next.prev = span.prev
mheap.go#L1571: span.next = nil
mheap.go#L1581: if span.next != nil || span.prev != nil || span.list != nil {
mheap.go#L1582: println("runtime: failed mSpanList.insert", span, span.next, span.prev, span.list)
mheap.go#L1585: span.next = list.first
mheap.go#L1599: if span.next != nil || span.prev != nil || span.list != nil {
mheap.go#L1600: println("runtime: failed mSpanList.insertBack", span, span.next, span.prev, span.list)
mheap.go#L1606: list.last.next = span
mheap.go#L1623: for s := other.first; s != nil; s = s.next {
mheap.go#L1632: other.last.next = list.first
stack.go#L1191: next := s.next
stack.go#L1207: next := 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. |