We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed23a2 commit 3bf1eecCopy full SHA for 3bf1eec
src/runtime/mheap.go
@@ -312,8 +312,10 @@ type heapArena struct {
312
// during marking.
313
pageSpecials [pagesPerArena / 8]uint8
314
315
- // pageUseSpanDartboard is a bitmap that indicates which spans are
316
- // heap spans and also gcUsesSpanDartboard.
+ // pageUseSpanInlineMarkBits is a bitmap where each bit corresponds
+ // to a span, as only spans one page in size can have inline mark bits.
317
+ // The bit indicates that the span has a spanInlineMarkBits struct
318
+ // stored directly at the top end of the span's memory.
319
pageUseSpanInlineMarkBits [pagesPerArena / 8]uint8
320
321
// checkmarks stores the debug.gccheckmark state. It is only
0 commit comments