fdset_64.go 211 B

1234567891011
  1. // +build !darwin,!netbsd,!openbsd
  2. // +build amd64 arm64
  3. package goselect
  4. // darwin, netbsd and openbsd uses uint32 on both amd64 and 386
  5. const (
  6. // NFDBITS is the amount of bits per mask
  7. NFDBITS = 8 * 8
  8. )