10 lines
131 B
Go
10 lines
131 B
Go
// +build darwin,go1.11
|
|
|
|
package water
|
|
|
|
import "syscall"
|
|
|
|
func setNonBlock(fd int) error {
|
|
return syscall.SetNonblock(fd, true)
|
|
}
|