Freebsd is finally normal in sys/unix
This commit is contained in:
		
							parent
							
								
									c967f15e44
								
							
						
					
					
						commit
						05cc0c8298
					
				@ -1,5 +1,3 @@
 | 
			
		||||
// +build !freebsd
 | 
			
		||||
 | 
			
		||||
/* SPDX-License-Identifier: GPL-2.0
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
 | 
			
		||||
@ -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
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user