aboutsummaryrefslogtreecommitdiffstats
path: root/rwcancel/select_darwin.go
blob: d14edc8df3a3cf25b2ba97b5d51517275f589fc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0
 *
 * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
 */

package rwcancel

import "golang.org/x/sys/unix"

func unixSelect(nfd int, r *unix.FdSet, w *unix.FdSet, e *unix.FdSet, timeout *unix.Timeval) error {
	return unix.Select(nfd, r, w, e, timeout)
}