github.com/rsampaio/docker@v0.7.2-0.20150827203920-fdc73cc3fc31/pkg/system/utimes_unsupported.go (about) 1 // +build !linux,!freebsd,!darwin 2 3 package system 4 5 import "syscall" 6 7 // LUtimesNano is not supported on platforms other than linux, freebsd and darwin. 8 func LUtimesNano(path string, ts []syscall.Timespec) error { 9 return ErrNotSupportedPlatform 10 } 11 12 // UtimesNano is not supported on platforms other than linux, freebsd and darwin. 13 func UtimesNano(path string, ts []syscall.Timespec) error { 14 return ErrNotSupportedPlatform 15 }