Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for totalTime (0.08 sec)

  1. src/runtime/proc.go

    	}
    
    	if readgstatus(newg) != _Gdead {
    		throw("newproc1: new g is not Gdead")
    	}
    
    	totalSize := uintptr(4*goarch.PtrSize + sys.MinFrameSize) // extra space in case of reads slightly beyond frame
    	totalSize = alignUp(totalSize, sys.StackAlign)
    	sp := newg.stack.hi - totalSize
    	if usesLR {
    		// caller's LR
    		*(*uintptr)(unsafe.Pointer(sp)) = 0
    		prepGoExitFrame(sp)
    	}
    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