Add FreeBSD support

Signed-off-by: Brady OBrien <[email protected]>
This commit is contained in:
Brady OBrien
2018-05-21 17:31:22 +02:00
committed by Jason A. Donenfeld
parent 837a12c841
commit b962d7d791
8 changed files with 792 additions and 20 deletions
+14
View File
@@ -0,0 +1,14 @@
/* SPDX-License-Identifier: GPL-2.0
*
* Copyright (C) 2017-2018 Jason A. Donenfeld <[email protected]>. All Rights Reserved.
*/
// +build !linux
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)
}