github.com/tetratelabs/wazero@v1.2.1/internal/platform/fdset_unsupported.go (about) 1 //go:build !darwin && !linux 2 3 package platform 4 5 const nfdbits = 0x40 6 7 // FdSet mocks syscall.FdSet on systems that do not support it. 8 type FdSet struct { 9 Bits [16]int64 10 }