dotcloud/docker

View on GitHub
pkg/system/utimes_unsupported.go

Summary

Maintainability
A
0 mins
Test Coverage
//go:build !linux && !freebsd

package system // import "github.com/docker/docker/pkg/system"

import "syscall"

// LUtimesNano is only supported on linux and freebsd.
func LUtimesNano(path string, ts []syscall.Timespec) error {
    return ErrNotSupportedPlatform
}