26 lines
469 B
Go
26 lines
469 B
Go
//go:build tinygo
|
|
|
|
package sysfs
|
|
|
|
import (
|
|
"io/fs"
|
|
"os"
|
|
|
|
"github.com/tetratelabs/wazero/experimental/sys"
|
|
)
|
|
|
|
const supportedSyscallOflag = sys.Oflag(0)
|
|
|
|
func withSyscallOflag(oflag sys.Oflag, flag int) int {
|
|
// O_DIRECTORY not defined
|
|
// O_DSYNC not defined
|
|
// O_NOFOLLOW not defined
|
|
// O_NONBLOCK not defined
|
|
// O_RSYNC not defined
|
|
return flag
|
|
}
|
|
|
|
func openFile(path string, oflag sys.Oflag, perm fs.FileMode) (*os.File, sys.Errno) {
|
|
return nil, sys.ENOSYS
|
|
}
|