28 lines
683 B
Go
28 lines
683 B
Go
//go:build !windows && !linux && !darwin
|
|
|
|
package sysfs
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"github.com/tetratelabs/wazero/experimental/sys"
|
|
)
|
|
|
|
// Define values even if not used except as sentinels.
|
|
const (
|
|
_UTIME_NOW = -1
|
|
_UTIME_OMIT = -2
|
|
SupportsSymlinkNoFollow = false
|
|
)
|
|
|
|
func utimens(path string, times *[2]syscall.Timespec, symlinkFollow bool) error {
|
|
return utimensPortable(path, times, symlinkFollow)
|
|
}
|
|
|
|
func futimens(fd uintptr, times *[2]syscall.Timespec) error {
|
|
// Go exports syscall.Futimes, which is microsecond granularity, and
|
|
// WASI tests expect nanosecond. We don't yet have a way to invoke the
|
|
// futimens syscall portably.
|
|
return sys.ENOSYS
|
|
}
|