const syscall.O_CLOEXEC
8 uses
syscall (current package)
exec_linux.go#L449: _, _, err1 = RawSyscall(SYS_DUP3, uintptr(pipe), uintptr(nextfd), O_CLOEXEC)
exec_linux.go#L461: _, _, err1 = RawSyscall(SYS_DUP3, uintptr(fd[i]), uintptr(nextfd), O_CLOEXEC)
exec_linux.go#L543: return Pipe2(p, O_CLOEXEC)
zerrors_linux_amd64.go#L647: O_CLOEXEC = 0x80000
internal/poll
splice_linux.go#L224: const flags = syscall.O_CLOEXEC | syscall.O_NONBLOCK
os
file_unix.go#L216: r, e = syscall.Open(name, flag|syscall.O_CLOEXEC, syscallMode(perm))
pipe_linux.go#L14: e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
removeall_at.go#L174: r, e = unix.Openat(dirfd, name, O_RDONLY|syscall.O_CLOEXEC, 0)