Files
wazero/internal/sysfs/select_unsupported.go
Crypt Keeper 34324031cb extracts FS interfaces into fsapi package and consolidates impls (#1477)
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Edoardo Vacchi <evacchi@users.noreply.github.com>
Co-authored-by: Edoardo Vacchi <evacchi@users.noreply.github.com>
2023-05-17 07:19:54 +03:00

15 lines
260 B
Go

//go:build !darwin && !linux && !windows
package sysfs
import (
"syscall"
"time"
"github.com/tetratelabs/wazero/internal/platform"
)
func syscall_select(n int, r, w, e *platform.FdSet, timeout *time.Duration) (int, error) {
return -1, syscall.ENOSYS
}