summaryrefslogtreecommitdiff
path: root/pkg/archive/time_unsupported.go
blob: d0877968617e2d74f5b100eafe8c8eb0891455c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//go:build !linux
// +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)
}