github.com/docker/docker@v299999999.0.0-20200612211812-aaf470eca7b5+incompatible/pkg/system/utimes_unsupported.go (about)

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