Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for releaseSudog (0.1 sec)

  1. src/runtime/proc.go

    	pp.sudogcache[n-1] = nil
    	pp.sudogcache = pp.sudogcache[:n-1]
    	if s.elem != nil {
    		throw("acquireSudog: found s.elem != nil in cache")
    	}
    	releasem(mp)
    	return s
    }
    
    //go:nosplit
    func releaseSudog(s *sudog) {
    	if s.elem != nil {
    		throw("runtime: sudog with non-nil elem")
    	}
    	if s.isSelect {
    		throw("runtime: sudog with non-false isSelect")
    	}
    	if s.next != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top