github.com/jaegerpicker/docker@v0.7.7-0.20150325003727-22dba32b4dab/pkg/archive/time_unsupported.go (about) 1 // +build !linux 2 3 package archive 4 5 import ( 6 "syscall" 7 "time" 8 ) 9 10 func timeToTimespec(time time.Time) (ts syscall.Timespec) { 11 nsec := int64(0) 12 if !time.IsZero() { 13 nsec = time.UnixNano() 14 } 15 return syscall.NsecToTimespec(nsec) 16 }