vendor: vfs add vendor/github.com/djherbis/times

This commit is contained in:
Nick Craig-Wood
2017-11-10 10:16:38 +00:00
parent e946a8eab0
commit bb0ce0cb5f
20 changed files with 828 additions and 1 deletions

39
vendor/github.com/djherbis/times/times_nacl.go generated vendored Normal file
View File

@@ -0,0 +1,39 @@
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// http://golang.org/src/os/stat_nacl.go
package times
import (
"os"
"syscall"
"time"
)
// HasChangeTime and HasBirthTime are true if and only if
// the target OS supports them.
const (
HasChangeTime = true
HasBirthTime = false
)
type timespec struct {
atime
mtime
ctime
nobtime
}
func timespecToTime(sec, nsec int64) time.Time {
return time.Unix(sec, nsec)
}
func getTimespec(fi os.FileInfo) (t timespec) {
stat := fi.Sys().(*syscall.Stat_t)
t.atime.v = timespecToTime(stat.Atime, stat.AtimeNsec)
t.mtime.v = timespecToTime(stat.Mtime, stat.MtimeNsec)
t.ctime.v = timespecToTime(stat.Ctime, stat.CtimeNsec)
return t
}