aboutsummaryrefslogtreecommitdiffstats
path: root/rwcancel/fdset.go
diff options
context:
space:
mode:
Diffstat (limited to 'rwcancel/fdset.go')
-rw-r--r--rwcancel/fdset.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/rwcancel/fdset.go b/rwcancel/fdset.go
deleted file mode 100644
index 28746e6..0000000
--- a/rwcancel/fdset.go
+++ /dev/null
@@ -1,22 +0,0 @@
-/* SPDX-License-Identifier: MIT
- *
- * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
- */
-
-package rwcancel
-
-import "golang.org/x/sys/unix"
-
-type fdSet struct {
- unix.FdSet
-}
-
-func (fdset *fdSet) set(i int) {
- bits := 32 << (^uint(0) >> 63)
- fdset.Bits[i/bits] |= 1 << uint(i%bits)
-}
-
-func (fdset *fdSet) check(i int) bool {
- bits := 32 << (^uint(0) >> 63)
- return (fdset.Bits[i/bits] & (1 << uint(i%bits))) != 0
-}