os.ProcAttr.Sys (field)

6 uses

	os (current package)
		exec.go#L63: 	Sys *syscall.SysProcAttr
		exec_posix.go#L29: 	if attr != nil && attr.Sys == nil && attr.Dir != "" {
		exec_posix.go#L40: 		Sys: attr.Sys,

	os/exec
		exec.go#L426: 		Sys:   c.SysProcAttr,

	src.elv.sh/pkg/daemon
		spawn_unix.go#L15: 		Sys: &syscall.SysProcAttr{

	src.elv.sh/pkg/eval
		external_cmd.go#L92: 	proc, err := os.StartProcess(path, args, &os.ProcAttr{Files: files, Sys: sys})