const runtime.pagesPerReclaimerChunk
6 uses
runtime (current package)
malloc.go#L474: if pagesPerArena%pagesPerReclaimerChunk != 0 {
malloc.go#L475: print("pagesPerArena (", pagesPerArena, ") is not divisible by pagesPerReclaimerChunk (", pagesPerReclaimerChunk, ")\n")
mheap.go#L46: pagesPerReclaimerChunk = 512
mheap.go#L772: idx := uintptr(atomic.Xadd64(&h.reclaimIndex, pagesPerReclaimerChunk) - pagesPerReclaimerChunk)
mheap.go#L786: nfound := h.reclaimChunk(arenas, idx, pagesPerReclaimerChunk)
 |
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. |