mirror of
https://github.com/golang/go
synced 2024-11-22 09:54:40 -07:00
runtime: clarify work.bytesMarked documentation
Change-Id: If5132400aac0ef00e467958beeaab5e64d053d10 Reviewed-on: https://go-review.googlesource.com/c/go/+/619099 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Austin Clements <austin@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
parent
c39bc22c14
commit
89f29a772a
@ -334,11 +334,12 @@ type workType struct {
|
||||
|
||||
// bytesMarked is the number of bytes marked this cycle. This
|
||||
// includes bytes blackened in scanned objects, noscan objects
|
||||
// that go straight to black, and permagrey objects scanned by
|
||||
// markroot during the concurrent scan phase. This is updated
|
||||
// atomically during the cycle. Updates may be batched
|
||||
// arbitrarily, since the value is only read at the end of the
|
||||
// cycle.
|
||||
// that go straight to black, objects allocated as black during
|
||||
// the cycle, and permagrey objects scanned by markroot during
|
||||
// the concurrent scan phase.
|
||||
//
|
||||
// This is updated atomically during the cycle. Updates may be batched
|
||||
// arbitrarily, since the value is only read at the end of the cycle.
|
||||
//
|
||||
// Because of benign races during marking, this number may not
|
||||
// be the exact number of marked bytes, but it should be very
|
||||
|
Loading…
Reference in New Issue
Block a user