Files
wazero/internal/sysfs/poll_unsupported.go
2023-07-28 10:49:17 +02:00

12 lines
309 B
Go

//go:build !linux && !darwin && !windows
package sysfs
import "github.com/tetratelabs/wazero/experimental/sys"
// pollRead implements `PollRead` as documented on fsapi.File via a file
// descriptor.
func pollRead(fd uintptr, timeoutMillis int32) (ready bool, errno sys.Errno) {
return false, sys.ENOSYS
}