ab35df454d
Removed pre-go1.17 build-tags with go fix; go mod init go fix -mod=readonly ./... rm go.mod Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
16 lines
282 B
Go
16 lines
282 B
Go
//go:build !linux
|
|
|
|
package archive // import "github.com/docker/docker/pkg/archive"
|
|
|
|
import (
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func timeToTimespec(time time.Time) (ts syscall.Timespec) {
|
|
nsec := int64(0)
|
|
if !time.IsZero() {
|
|
nsec = time.UnixNano()
|
|
}
|
|
return syscall.NsecToTimespec(nsec)
|
|
}
|