Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gcBgMarkWorker (0.24 sec)

  1. src/internal/trace/summary_test.go

    	var (
    		hasSchedWaitTime    bool
    		hasSyncBlockTime    bool
    		hasGCMarkAssistTime bool
    	)
    
    	assertContainsGoroutine(t, summaries, "runtime.gcBgMarkWorker")
    	assertContainsGoroutine(t, summaries, "main.main.func1")
    
    	for _, summary := range summaries {
    		basicGoroutineSummaryChecks(t, summary)
    		hasSchedWaitTime = hasSchedWaitTime || summary.SchedWaitTime > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    	}
    
    	if debug.gcshrinkstackoff > 0 {
    		return
    	}
    	f := findfunc(gp.startpc)
    	if f.valid() && f.funcID == abi.FuncID_gcBgMarkWorker {
    		// We're not allowed to shrink the gcBgMarkWorker
    		// stack (see gcBgMarkWorker for explanation).
    		return
    	}
    
    	oldsize := gp.stack.hi - gp.stack.lo
    	newsize := oldsize / 2
    	// Don't shrink the allocation below the minimum-sized stack
    	// allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    //
    //go:linkname goarmsoftfp
    
    var (
    	// Pool of GC parked background workers. Entries are type
    	// *gcBgMarkWorkerNode.
    	gcBgMarkWorkerPool lfstack
    
    	// Total number of gcBgMarkWorker goroutines. Protected by worldsema.
    	gcBgMarkWorkerCount int32
    
    	// Information about what cpu features are available.
    	// Packages outside the runtime should not use these
    	// as they are not an external api.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top