func syscall.SetNonblock
6 uses
syscall (current package)
exec_unix.go#L106: func SetNonblock(fd int, nonblocking bool) (err error) {
internal/poll
fd_unix.go#L131: return syscall.SetNonblock(fd.Sysfd, false)
sys_cloexec.go#L31: if err = syscall.SetNonblock(ns, true); err != nil {
net
file_unix.go#L23: if err := syscall.SetNonblock(s, true); err != nil {
sys_cloexec.go#L31: if err = syscall.SetNonblock(s, true); err != nil {
os
file_unix.go#L181: if err := syscall.SetNonblock(fdi, true); err == nil {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |