Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsSystemGoroutine (0.11 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)
Back to top