Files
wazero/internal/platform/fdset_unsupported.go
2023-07-19 07:30:06 +08:00

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
}