10 lines
154 B
Go
10 lines
154 B
Go
//go:build !windows
|
|
|
|
package platform
|
|
|
|
import "syscall"
|
|
|
|
func setNonblock(fd uintptr, enable bool) error {
|
|
return syscall.SetNonblock(int(fd), enable)
|
|
}
|