Files
opentf/vendor/github.com/creack/goselect/select_linux.go
2017-01-20 10:59:14 -05:00

11 lines
240 B
Go

// +build linux
package goselect
import "syscall"
func sysSelect(n int, r, w, e *FDSet, timeout *syscall.Timeval) error {
_, err := syscall.Select(n, (*syscall.FdSet)(r), (*syscall.FdSet)(w), (*syscall.FdSet)(e), timeout)
return err
}