Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _DebugGC (0.11 sec)

  1. src/runtime/mgcmark.go

    	return int64(scannedSize)
    }
    
    // Scan a stack frame: local variables and function arguments/results.
    //
    //go:nowritebarrier
    func scanframeworker(frame *stkframe, state *stackScanState, gcw *gcWork) {
    	if _DebugGC > 1 && frame.continpc != 0 {
    		print("scanframe ", funcname(frame.fn), "\n")
    	}
    
    	isAsyncPreempt := frame.fn.valid() && frame.fn.funcID == abi.FuncID_asyncPreempt
    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

    // object, it scans only the first oblet and enqueues the remaining
    // oblets as new scan jobs.
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    const (
    	_DebugGC      = 0
    	_FinBlockSize = 4 * 1024
    
    	// concurrentSweep is a debug flag. Disabling this flag
    	// ensures all spans are swept while the world is stopped.
    	concurrentSweep = true
    
    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