Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for adaptivestackstart (0.21 sec)

  1. src/runtime/runtime1.go

    	// but allowing it is convenient for testing and for programs
    	// that do an os.Setenv in main.init or main.main.
    	asynctimerchan atomic.Int32
    }
    
    var dbgvars = []*dbgVar{
    	{name: "adaptivestackstart", value: &debug.adaptivestackstart},
    	{name: "asyncpreemptoff", value: &debug.asyncpreemptoff},
    	{name: "asynctimerchan", atomic: &debug.asynctimerchan},
    	{name: "cgocheck", value: &debug.cgocheck},
    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/stack.go

    // startingStackSize is updated every GC by tracking the average size of
    // stacks scanned during the GC.
    var startingStackSize uint32 = fixedStack
    
    func gcComputeStartingStackSize() {
    	if debug.adaptivestackstart == 0 {
    		return
    	}
    	// For details, see the design doc at
    	// https://docs.google.com/document/d/1YDlGIdVTPnmUiTAavlZxBI1d9pwGQgZT7IKFKlIXohQ/edit?usp=sharing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top