Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for debugScanConservative (0.27 sec)

  1. src/runtime/mgcmark.go

    		gp.preemptShrink = true
    	}
    
    	var state stackScanState
    	state.stack = gp.stack
    
    	if stackTraceDebug {
    		println("stack trace goroutine", gp.goid)
    	}
    
    	if debugScanConservative && gp.asyncSafePoint {
    		print("scanning async preempted goroutine ", gp.goid, " stack [", hex(gp.stack.lo), ",", hex(gp.stack.hi), ")\n")
    	}
    
    	// Scan the saved context register. This is effectively a live
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// concurrentSweep is a debug flag. Disabling this flag
    	// ensures all spans are swept while the world is stopped.
    	concurrentSweep = true
    
    	// debugScanConservative enables debug logging for stack
    	// frames that are scanned conservatively.
    	debugScanConservative = false
    
    	// sweepMinHeapDistance is a lower bound on the heap distance
    	// (in bytes) reserved for concurrent sweeping between GC
    	// cycles.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top