func syscall.SetNonblock
7 uses
syscall (current package)
exec_unix.go#L105: func SetNonblock(fd int, nonblocking bool) (err error) {
internal/poll
fd_unix.go#L129: return syscall.SetNonblock(fd.Sysfd, false)
sock_cloexec.go#L44: if err = syscall.SetNonblock(ns, true); err != nil {
net
file_unix.go#L23: if err := syscall.SetNonblock(s, true); err != nil {
sock_cloexec.go#L43: if err = syscall.SetNonblock(s, true); err != nil {
os
file_unix.go#L218: } else if err := syscall.SetNonblock(fd, true); err == nil {
file_unix.go#L234: if err := syscall.SetNonblock(fd, false); err == nil {
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. |