adam-gui/vendor/github.com/creack/goselect/select_other.go

10 lines
251 B
Go
Raw Permalink Normal View History

2024-04-29 19:13:50 +02:00
// +build !linux,!windows,!plan9,!solaris
package goselect
import "syscall"
func sysSelect(n int, r, w, e *FDSet, timeout *syscall.Timeval) error {
return syscall.Select(n, (*syscall.FdSet)(r), (*syscall.FdSet)(w), (*syscall.FdSet)(e), timeout)
}