diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-05-20 17:42:34 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-05-20 17:42:34 +0200 |
commit | a9b377e9e10eb5194c0bdff32136c11b17253bfd (patch) | |
tree | a71c2e5736b8a948586530c3044e70581014f75b /rwcancel/select_linux.go | |
parent | 9087e444e6457a21fdb1037b9ed204ac417abc05 (diff) |
rwcancel: use poll instead of select
Suggested-by: Lennart Poettering <lennart@poettering.net>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'rwcancel/select_linux.go')
-rw-r--r-- | rwcancel/select_linux.go | 13 |
1 files changed, 0 insertions, 13 deletions
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 -} |