11 lines
184 B
Go
11 lines
184 B
Go
//go:build !darwin && !linux && !windows
|
|
|
|
package platform
|
|
|
|
const nfdbits = 0x40
|
|
|
|
// FdSet mocks syscall.FdSet on systems that do not support it.
|
|
type FdSet struct {
|
|
Bits [16]int64
|
|
}
|