const syscall.O_NONBLOCK
6 uses
syscall (current package)
exec_unix.go#L111: flag |= O_NONBLOCK
exec_unix.go#L113: flag &^= O_NONBLOCK
zerrors_linux_amd64.go#L637: O_NONBLOCK = 0x800
internal/poll
splice_linux.go#L232: if err := syscall.Pipe2(fds[:], syscall.O_CLOEXEC|syscall.O_NONBLOCK); err != nil {
internal/syscall/unix
nonblocking_unix.go#L16: return flag&syscall.O_NONBLOCK != 0, nil
nonblocking_unix.go#L20: return flag&syscall.O_NONBLOCK != 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. |