select_other.go 251 B

123456789
  1. // +build !linux,!windows,!plan9,!solaris
  2. package goselect
  3. import "syscall"
  4. func sysSelect(n int, r, w, e *FDSet, timeout *syscall.Timeval) error {
  5. return syscall.Select(n, (*syscall.FdSet)(r), (*syscall.FdSet)(w), (*syscall.FdSet)(e), timeout)
  6. }