aboutsummaryrefslogtreecommitdiffstats
path: root/rwcancel/select_linux.go
blob: ac941fdf551289fd87764a407c36dfdec55fa244 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2017-2021 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) (err error) {
	_, err = unix.Select(nfd, r, w, e, timeout)
	return
}