github.com/chenchun/docker@v1.3.2-0.20150629222414-20467faf132b/pkg/system/utimes_unsupported.go (about)

     1  // +build !linux,!freebsd,!darwin
     2  
     3  package system
     4  
     5  import "syscall"
     6  
     7  func LUtimesNano(path string, ts []syscall.Timespec) error {
     8  	return ErrNotSupportedPlatform
     9  }
    10  
    11  func UtimesNano(path string, ts []syscall.Timespec) error {
    12  	return ErrNotSupportedPlatform
    13  }