utimes_unsupported.go 263 B

12345678910
  1. //go:build !linux && !freebsd
  2. package system // import "github.com/docker/docker/pkg/system"
  3. import "syscall"
  4. // LUtimesNano is only supported on linux and freebsd.
  5. func LUtimesNano(path string, ts []syscall.Timespec) error {
  6. return ErrNotSupportedPlatform
  7. }