+// +build !windows
+
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
+// Package rwcancel implements cancelable read/write operations on
+// a file descriptor.
package rwcancel
import (
-// +build !linux
+// +build !linux,!windows
/* SPDX-License-Identifier: MIT
*
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)
+ _, err := unix.Select(nfd, r, w, e, timeout)
+ return err
}