blob: 2301a067ea0070615e33205468facad728536fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//go:build !(linux || darwin || windows) || tinygo
package sysfs
import (
"github.com/tetratelabs/wazero/experimental/sys"
"github.com/tetratelabs/wazero/internal/fsapi"
)
// poll implements `Poll` as documented on fsapi.File via a file descriptor.
func poll(uintptr, fsapi.Pflag, int32) (bool, sys.Errno) {
return false, sys.ENOSYS
}
|