mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1c90a4dd9a
Implement system.LUtimesNano and system.UtimesNano. The latter might be removed in future because it's basically same as os.Chtimes. That's why the test is mainly focusing LUtimesNano. Docker-DCO-1.1-Signed-off-by: Kato Kazuyoshi <kato.kazuyoshi@gmail.com> (github: kzys)
13 lines
251 B
Go
13 lines
251 B
Go
// +build !linux,!freebsd
|
|
|
|
package system
|
|
|
|
import "syscall"
|
|
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
|
return ErrNotSupportedPlatform
|
|
}
|
|
|
|
func UtimesNano(path string, ts []syscall.Timespec) error {
|
|
return ErrNotSupportedPlatform
|
|
}
|