updated vendor

This commit is contained in:
2026-06-16 08:02:19 +02:00
parent 2f7f99d3f0
commit 77299d0c64
1283 changed files with 67302 additions and 208958 deletions
-16
View File
@@ -2,7 +2,6 @@ package sys
import (
experimentalsys "github.com/tetratelabs/wazero/experimental/sys"
"github.com/tetratelabs/wazero/internal/fsapi"
"github.com/tetratelabs/wazero/sys"
)
@@ -134,18 +133,3 @@ func (d *lazyDir) Close() experimentalsys.Errno {
}
return f.Close()
}
// IsNonblock implements the same method as documented on fsapi.File
func (d *lazyDir) IsNonblock() bool {
return false
}
// SetNonblock implements the same method as documented on fsapi.File
func (d *lazyDir) SetNonblock(bool) experimentalsys.Errno {
return experimentalsys.EISDIR
}
// Poll implements the same method as documented on fsapi.File
func (d *lazyDir) Poll(fsapi.Pflag, int32) (ready bool, errno experimentalsys.Errno) {
return false, experimentalsys.ENOSYS
}