github.com/shishir-a412ed/docker@v1.3.2-0.20180103180333-fda904911d87/pkg/system/utimes_unsupported.go (about)

     1  // +build !linux,!freebsd
     2  
     3  package 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  }