Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runtime_AfterForkInChild (0.18 sec)

  1. src/syscall/exec_linux.go

    	slash = [...]byte{'/', 0}
    
    	forceClone3 = false // Used by unit tests only.
    )
    
    // Implemented in runtime package.
    func runtime_BeforeFork()
    func runtime_AfterFork()
    func runtime_AfterForkInChild()
    
    // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
    // If a dup or exec fails, write the errno error to pipe.
    // (Pipe is close-on-exec so if exec succeeds, it will be closed.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    //   - github.com/containerd/containerd
    //   - gvisor.dev/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname syscall_runtime_AfterForkInChild syscall.runtime_AfterForkInChild
    //go:nosplit
    //go:nowritebarrierrec
    func syscall_runtime_AfterForkInChild() {
    	// It's OK to change the global variable inForkedChild here
    	// because we are going to change it back. There is no race here,
    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