const syscall.O_CLOEXEC
8 uses
syscall (current package)
exec_linux.go#L547: _, _, err1 = RawSyscall(SYS_DUP3, uintptr(pipe), uintptr(nextfd), O_CLOEXEC)
exec_linux.go#L559: _, _, err1 = RawSyscall(SYS_DUP3, uintptr(fd[i]), uintptr(nextfd), O_CLOEXEC)
forkpipe2.go#L14: return Pipe2(p, O_CLOEXEC)
zerrors_linux_amd64.go#L625: O_CLOEXEC = 0x80000
internal/poll
splice_linux.go#L232: if err := syscall.Pipe2(fds[:], syscall.O_CLOEXEC|syscall.O_NONBLOCK); err != nil {
os
file_unix.go#L272: r, s, e = open(name, flag|syscall.O_CLOEXEC, syscallMode(perm))
pipe2_unix.go#L16: e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
removeall_at.go#L180: r, e = unix.Openat(dirfd, name, O_RDONLY|syscall.O_CLOEXEC, 0)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |