Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsSystemGoroutine (0.2 sec)

  1. src/runtime/mprof.go

    	gp := getg()
    
    	isOK := func(gp1 *g) bool {
    		// Checking isSystemGoroutine here makes GoroutineProfile
    		// consistent with both NumGoroutine and Stack.
    		return gp1 != gp && readgstatus(gp1) != _Gdead && !isSystemGoroutine(gp1, false)
    	}
    
    	pcbuf := makeProfStack() // see saveg() for explanation
    	stw := stopTheWorld(stwGoroutineProfile)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    //
    // If fixed is true, any goroutine that can vary between user and
    // system (that is, the finalizer goroutine) is considered a user
    // goroutine.
    func isSystemGoroutine(gp *g, fixed bool) bool {
    	// Keep this in sync with internal/trace.IsSystemGoroutine.
    	f := findfunc(gp.startpc)
    	if !f.valid() {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    					// Runtime system goroutines or threads
    					// (such as those identified by
    					// runtime.isSystemGoroutine). These
    					// should never be labeled.
    					mustNotBeLabeled = l.Function.Name
    				case "gogo", "gosave_systemstack_switch", "racecall":
    					// These are context switch/race
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top