var runtime.stackLarge
17 uses
runtime (current package)
stack.go#L153: var stackLarge struct {
stack.go#L166: for i := range stackLarge.free {
stack.go#L167: stackLarge.free[i].init()
stack.go#L168: lockInit(&stackLarge.lock, lockRankStackLarge)
stack.go#L388: lock(&stackLarge.lock)
stack.go#L389: if !stackLarge.free[log2npage].isEmpty() {
stack.go#L390: s = stackLarge.free[log2npage].first
stack.go#L391: stackLarge.free[log2npage].remove(s)
stack.go#L393: unlock(&stackLarge.lock)
stack.go#L491: lock(&stackLarge.lock)
stack.go#L492: stackLarge.free[log2npage].insert(s)
stack.go#L493: unlock(&stackLarge.lock)
stack.go#L1204: lock(&stackLarge.lock)
stack.go#L1205: for i := range stackLarge.free {
stack.go#L1206: for s := stackLarge.free[i].first; s != nil; {
stack.go#L1208: stackLarge.free[i].remove(s)
stack.go#L1214: unlock(&stackLarge.lock)
![]() |
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. |