From a9b377e9e10eb5194c0bdff32136c11b17253bfd Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 20 May 2021 17:42:34 +0200 Subject: rwcancel: use poll instead of select Suggested-by: Lennart Poettering Signed-off-by: Jason A. Donenfeld --- rwcancel/select_linux.go | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 rwcancel/select_linux.go (limited to 'rwcancel/select_linux.go') diff --git a/rwcancel/select_linux.go b/rwcancel/select_linux.go deleted file mode 100644 index ac941fd..0000000 --- a/rwcancel/select_linux.go +++ /dev/null @@ -1,13 +0,0 @@ -/* 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 -} -- cgit v1.2.3-59-g8ed1b