kitty/tools/utils/select_without_pselect.go
2022-11-14 15:41:50 +05:30

20 lines
378 B
Go

//go:build darwin
package utils
import (
"time"
"golang.org/x/sys/unix"
)
// Go unix does not wrap pselect on darwin
func Select(nfd int, r *unix.FdSet, w *unix.FdSet, e *unix.FdSet, timeout time.Duration) (n int, err error) {
if timeout < 0 {
return unix.Select(nfd, r, w, e, nil)
}
ts := unix.NsecToTimeval(int64(timeout))
return unix.Select(nfd, r, w, e, &ts)
}