Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AdditionalInheritedHandles (0.44 sec)

  1. src/syscall/exec_windows.go

    	AdditionalInheritedHandles []Handle            // a list of additional handles, already marked as inheritable, that will be inherited by the new process
    	ParentProcess              Handle              // if non-zero, the new process regards the process given by this handle as its parent process, and AdditionalInheritedHandles, if set, should exist in this parent process
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/internal/fuzz/sys_windows.go

    	cmd.Env = append(cmd.Env, fmt.Sprintf("GO_TEST_FUZZ_WORKER_HANDLES=%x,%x,%x", comm.fuzzIn.Fd(), comm.fuzzOut.Fd(), memFD))
    	cmd.SysProcAttr = &syscall.SysProcAttr{AdditionalInheritedHandles: []syscall.Handle{syscall.Handle(comm.fuzzIn.Fd()), syscall.Handle(comm.fuzzOut.Fd()), syscall.Handle(memFD)}}
    }
    
    // getWorkerComm returns communication channels in the worker process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:35:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"StringToUTF16", Func, 0},
    		{"StringToUTF16Ptr", Func, 0},
    		{"Symlink", Func, 0},
    		{"Sync", Func, 0},
    		{"SyncFileRange", Func, 0},
    		{"SysProcAttr", Type, 0},
    		{"SysProcAttr.AdditionalInheritedHandles", Field, 17},
    		{"SysProcAttr.AmbientCaps", Field, 9},
    		{"SysProcAttr.CgroupFD", Field, 20},
    		{"SysProcAttr.Chroot", Field, 0},
    		{"SysProcAttr.Cloneflags", Field, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top