2018-02-05 19:52:44 -05:00
|
|
|
// +build !darwin,!netbsd,!openbsd
|
2019-04-25 15:40:09 -04:00
|
|
|
// +build amd64 arm64 ppc64le mips64 mips64le s390x
|
2018-02-05 19:52:44 -05:00
|
|
|
|
|
|
|
package goselect
|
|
|
|
|
|
|
|
// darwin, netbsd and openbsd uses uint32 on both amd64 and 386
|
|
|
|
|
|
|
|
const (
|
|
|
|
// NFDBITS is the amount of bits per mask
|
|
|
|
NFDBITS = 8 * 8
|
|
|
|
)
|