Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gcpacertrace (0.34 sec)

  1. src/runtime/runtime1.go

    	{name: "dontfreezetheworld", value: &debug.dontfreezetheworld},
    	{name: "efence", value: &debug.efence},
    	{name: "gccheckmark", value: &debug.gccheckmark},
    	{name: "gcpacertrace", value: &debug.gcpacertrace},
    	{name: "gcshrinkstackoff", value: &debug.gcshrinkstackoff},
    	{name: "gcstoptheworld", value: &debug.gcstoptheworld},
    	{name: "gctrace", value: &debug.gctrace},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/runtime/extern.go

    	second mark pass while the world is stopped.  If the second
    	pass finds a reachable object that was not found by concurrent
    	mark, the garbage collector will panic.
    
    	gcpacertrace: setting gcpacertrace=1 causes the garbage collector to
    	print information about the internal state of the concurrent pacer.
    
    	gcshrinkstackoff: setting gcshrinkstackoff=1 disables moving goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	}
    
    	// Compute initial values for controls that are updated
    	// throughout the cycle.
    	c.dedicatedMarkWorkersNeeded.Store(dedicatedMarkWorkersNeeded)
    	c.revise()
    
    	if debug.gcpacertrace > 0 {
    		heapGoal := c.heapGoal()
    		assistRatio := c.assistWorkPerByte.Load()
    		print("pacer: assist ratio=", assistRatio,
    			" (scan ", gcController.heapScan.Load()>>20, " MB in ",
    			work.initialHeapLive>>20, "->",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/runtime/mgcsweep.go

    			throw("mismatched begin/end of activeSweep")
    		}
    		if a.state.CompareAndSwap(state, state-1) {
    			if state != sweepDrainedMask {
    				return
    			}
    			if debug.gcpacertrace > 0 {
    				live := gcController.heapLive.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top