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