2020-02-19 16:09:24 +01:00
|
|
|
// +build !linux,!windows
|
2018-05-21 17:27:18 +02:00
|
|
|
|
2019-01-02 01:55:51 +01:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-05-14 03:55:46 +02:00
|
|
|
*
|
2019-01-02 01:55:51 +01:00
|
|
|
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
|
2018-05-14 03:55:46 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
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 {
|
2020-02-19 16:09:24 +01:00
|
|
|
_, err := unix.Select(nfd, r, w, e, timeout)
|
|
|
|
return err
|
2018-05-14 03:55:46 +02:00
|
|
|
}
|