Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gcMarkWorkerModeStrings (0.18 sec)

  1. src/runtime/trace.go

    	cpuBuf      [2]*traceBuf
    
    	reader atomic.Pointer[g] // goroutine that called ReadTrace, or nil
    
    	// Fast mappings from enumerations to string IDs that are prepopulated
    	// in the trace.
    	markWorkerLabels [2][len(gcMarkWorkerModeStrings)]traceArg
    	goStopReasons    [2][len(traceGoStopReasonStrings)]traceArg
    	goBlockReasons   [2][len(traceBlockReasonStrings)]traceArg
    
    	// enabled indicates whether tracing is enabled, but it is only an optimization,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// should run until it is preempted and account its time
    	// against gcController.idleMarkTime.
    	gcMarkWorkerIdleMode
    )
    
    // gcMarkWorkerModeStrings are the strings labels of gcMarkWorkerModes
    // to use in execution traces.
    var gcMarkWorkerModeStrings = [...]string{
    	"Not worker",
    	"GC (dedicated)",
    	"GC (fractional)",
    	"GC (idle)",
    }
    
    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