Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 31 of 31 for publishTest (0.23 sec)

  1. src/runtime/proc.go

    	pp := mp.p.ptr()
    	newg := gfget(pp)
    	if newg == nil {
    		newg = malg(stackMin)
    		casgstatus(newg, _Gidle, _Gdead)
    		allgadd(newg) // publishes with a g->status of Gdead so GC scanner doesn't look at uninitialized stack.
    	}
    	if newg.stack.hi == 0 {
    		throw("newproc1: newg missing stack")
    	}
    
    	if readgstatus(newg) != _Gdead {
    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