Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for FD_CLOEXEC (0.14 sec)

  1. src/syscall/exec_bsd.go

    		} else {
    			_, _, err1 = RawSyscall(SYS_DUP2, uintptr(pipe), uintptr(nextfd), 0)
    			if err1 != 0 {
    				goto childerror
    			}
    			_, _, err1 = RawSyscall(SYS_FCNTL, uintptr(nextfd), F_SETFD, FD_CLOEXEC)
    		}
    		if err1 != 0 {
    			goto childerror
    		}
    		pipe = nextfd
    		nextfd++
    	}
    	for i = 0; i < len(fd); i++ {
    		if fd[i] >= 0 && fd[i] < i {
    			if nextfd == pipe { // don't stomp on pipe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/syscall/exec_libc2.go

    			_, _, err1 = rawSyscall(dupTrampoline, uintptr(pipe), uintptr(nextfd), 0)
    			if err1 != 0 {
    				goto childerror
    			}
    			_, _, err1 = rawSyscall(abi.FuncPCABI0(libc_fcntl_trampoline), uintptr(nextfd), F_SETFD, FD_CLOEXEC)
    		}
    		if err1 != 0 {
    			goto childerror
    		}
    		pipe = nextfd
    		nextfd++
    	}
    	for i = 0; i < len(fd); i++ {
    		if fd[i] >= 0 && fd[i] < i {
    			if nextfd == pipe { // don't stomp on pipe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/syscall/exec_libc.go

    		default:
    			_, err1 = dup2child(uintptr(pipe), uintptr(nextfd))
    			if err1 != 0 {
    				goto childerror
    			}
    			_, err1 = fcntl1(uintptr(nextfd), F_SETFD, FD_CLOEXEC)
    		}
    		if err1 != 0 {
    			goto childerror
    		}
    		pipe = nextfd
    		nextfd++
    	}
    	for i = 0; i < len(fd); i++ {
    		if fd[i] >= 0 && fd[i] < i {
    			if nextfd == pipe { // don't stomp on pipe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. src/syscall/exec_unix.go

    	b := make([]byte, n)
    	n = 0
    	for i, s := range ss {
    		bb[i] = &b[n]
    		copy(b[n:], s)
    		n += len(s) + 1
    	}
    	return bb, nil
    }
    
    func CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) }
    
    func SetNonblock(fd int, nonblocking bool) (err error) {
    	flag, err := fcntl(fd, F_GETFL, 0)
    	if err != nil {
    		return err
    	}
    	if (flag&O_NONBLOCK != 0) == nonblocking {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    	err = socketpair(domain, typ, proto, &fdx)
    	if err == nil {
    		fd[0] = int(fdx[0])
    		fd[1] = int(fdx[1])
    	}
    	return
    }
    
    var ioSync int64
    
    func CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) }
    
    func SetNonblock(fd int, nonblocking bool) (err error) {
    	flag, err := fcntl(fd, F_GETFL, 0)
    	if err != nil {
    		return err
    	}
    	if (flag&O_NONBLOCK != 0) == nonblocking {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EPOLLWRBAND              = 0x0008
    	EPOLLPRI                 = 0x0010
    	EPOLLERR                 = 0x0020
    	EPOLLHUP                 = 0x0040
    	EPOLLEXCLUSIVE           = 0x20000000
    	EPOLLONESHOT             = 0x40000000
    	FD_CLOEXEC               = 0x01
    	FD_CLOFORK               = 0x02
    	FD_SETSIZE               = 0x800
    	FNDELAY                  = 0x04
    	F_CLOSFD                 = 9
    	F_CONTROL_CVT            = 13
    	F_DUPFD                  = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. src/syscall/zerrors_solaris_amd64.go

    	EMPTY_SET                     = 0x0
    	EMT_CPCOVF                    = 0x1
    	EQUALITY_CHECK                = 0x0
    	EXTA                          = 0xe
    	EXTB                          = 0xf
    	FD_CLOEXEC                    = 0x1
    	FD_NFDBITS                    = 0x40
    	FD_SETSIZE                    = 0x10000
    	FLUSHALL                      = 0x1
    	FLUSHDATA                     = 0x0
    	FLUSHO                        = 0x2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	EXTB                          = 0xf
    	EXTRAP                        = 0x1
    	EYEC_RTENTRYA                 = 0x257274656e747241
    	EYEC_RTENTRYF                 = 0x257274656e747246
    	E_ACC                         = 0x0
    	FD_CLOEXEC                    = 0x1
    	FD_SETSIZE                    = 0xfffe
    	FF0                           = 0x0
    	FF1                           = 0x2000
    	FFDLY                         = 0x2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	EXTB                          = 0xf
    	EXTRAP                        = 0x1
    	EYEC_RTENTRYA                 = 0x257274656e747241
    	EYEC_RTENTRYF                 = 0x257274656e747246
    	E_ACC                         = 0x0
    	FD_CLOEXEC                    = 0x1
    	FD_SETSIZE                    = 0xfffe
    	FF0                           = 0x0
    	FF1                           = 0x2000
    	FFDLY                         = 0x2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_openbsd_ppc64.go

    	EV_RECEIPT                        = 0x40
    	EV_SYSFLAGS                       = 0xf800
    	EXTA                              = 0x4b00
    	EXTB                              = 0x9600
    	EXTPROC                           = 0x800
    	FD_CLOEXEC                        = 0x1
    	FD_SETSIZE                        = 0x400
    	FLUSHO                            = 0x800000
    	F_DUPFD                           = 0x0
    	F_DUPFD_CLOEXEC                   = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 67.1K bytes
    - Viewed (0)
Back to top