func syscall.SetNonblock
5 uses
syscall (current package)
exec_unix.go#L105: func SetNonblock(fd int, nonblocking bool) (err error) {
internal/poll
fd_unix.go#L130: return syscall.SetNonblock(fd.Sysfd, false)
net
file_unix.go#L23: if err := syscall.SetNonblock(s, true); err != nil {
os
file_unix.go#L222: } else if err := syscall.SetNonblock(fd, true); err == nil {
file_unix.go#L238: if err := syscall.SetNonblock(fd, false); err == nil {
![]() |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |