Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AdditionalInheritedHandles (0.31 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/os/exec/exec_windows_test.go

    		t.Error(err)
    	}
    	const marker = "arrakis, dune, desert planet"
    	childProc := helperCommand(t, "pipehandle", strconv.FormatUint(uint64(w.Fd()), 16), marker)
    	childProc.SysProcAttr = &syscall.SysProcAttr{AdditionalInheritedHandles: []syscall.Handle{syscall.Handle(w.Fd())}}
    	err = childProc.Start()
    	if err != nil {
    		t.Error(err)
    	}
    	w.Close()
    	response, err := io.ReadAll(r)
    	if err != nil {
    		t.Error(err)
    	}
    	r.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 23:07:55 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. 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)
  4. api/go1.17.txt

    pkg syscall (windows-386), func GetQueuedCompletionStatus //deprecated
    pkg syscall (windows-386), func PostQueuedCompletionStatus //deprecated
    pkg syscall (windows-386), type SysProcAttr struct, AdditionalInheritedHandles []Handle
    pkg syscall (windows-386), type SysProcAttr struct, ParentProcess Handle
    pkg syscall (windows-amd64), func CreateIoCompletionPort //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. 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