Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runtime_AfterExec (0.12 sec)

  1. src/syscall/exec_unix.go

    	pid, err = forkExec(argv0, argv, attr)
    	return pid, 0, err
    }
    
    // Implemented in runtime package.
    func runtime_BeforeExec()
    func runtime_AfterExec()
    
    // execveLibc is non-nil on OS using libc syscall, set to execve in exec_libc.go; this
    // avoids a build dependency for other platforms.
    var execveLibc func(path uintptr, argv uintptr, envp uintptr) Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. 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