aboutsummaryrefslogtreecommitdiffstats
path: root/rwcancel/select_default.go
blob: dd23cdaa9f05f182f43c2ed31379637ef10a8b46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// +build !linux

/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2017-2019 WireGuard LLC. 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)
}