Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for runtime_AfterExec (0.17 sec)

  1. src/runtime/proc.go

    		for pendingPreemptSignals.Load() > 0 {
    			osyield()
    		}
    	}
    }
    
    // Called from syscall package after Exec.
    //
    //go:linkname syscall_runtime_AfterExec syscall.runtime_AfterExec
    func syscall_runtime_AfterExec() {
    	execLock.unlock()
    }
    
    // Allocate a new g, with a stack big enough for stacksize bytes.
    func malg(stacksize int32) *g {
    	newg := new(g)
    	if stacksize >= 0 {
    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