mirror of
https://github.com/golang/go
synced 2024-11-23 04:20:03 -07:00
runtime: pass work.userForced to gcController.endCycle explicitly
For #44167. Change-Id: I15817006f1870d6237cd06dabad988da3f23a6d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/306604 Trust: Michael Knyszek <mknyszek@google.com> Run-TryBot: Michael Knyszek <mknyszek@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com>
This commit is contained in:
parent
3eaf75c13a
commit
e9cc31e736
@ -898,7 +898,7 @@ top:
|
|||||||
// endCycle depends on all gcWork cache stats being flushed.
|
// endCycle depends on all gcWork cache stats being flushed.
|
||||||
// The termination algorithm above ensured that up to
|
// The termination algorithm above ensured that up to
|
||||||
// allocations since the ragged barrier.
|
// allocations since the ragged barrier.
|
||||||
nextTriggerRatio := gcController.endCycle()
|
nextTriggerRatio := gcController.endCycle(work.userForced)
|
||||||
|
|
||||||
// Perform mark termination. This will restart the world.
|
// Perform mark termination. This will restart the world.
|
||||||
gcMarkTermination(nextTriggerRatio)
|
gcMarkTermination(nextTriggerRatio)
|
||||||
|
@ -444,8 +444,10 @@ func (c *gcControllerState) revise() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// endCycle computes the trigger ratio for the next cycle.
|
// endCycle computes the trigger ratio for the next cycle.
|
||||||
func (c *gcControllerState) endCycle() float64 {
|
// userForced indicates whether the current GC cycle was forced
|
||||||
if work.userForced {
|
// by the application.
|
||||||
|
func (c *gcControllerState) endCycle(userForced bool) float64 {
|
||||||
|
if userForced {
|
||||||
// Forced GC means this cycle didn't start at the
|
// Forced GC means this cycle didn't start at the
|
||||||
// trigger, so where it finished isn't good
|
// trigger, so where it finished isn't good
|
||||||
// information about how to adjust the trigger.
|
// information about how to adjust the trigger.
|
||||||
|
Loading…
Reference in New Issue
Block a user