aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/containers/storage/lockfile_otherunix.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/containers/storage/lockfile_otherunix.go')
-rw-r--r--vendor/github.com/containers/storage/lockfile_otherunix.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/vendor/github.com/containers/storage/lockfile_otherunix.go b/vendor/github.com/containers/storage/lockfile_otherunix.go
deleted file mode 100644
index 041d54c05..000000000
--- a/vendor/github.com/containers/storage/lockfile_otherunix.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// +build darwin freebsd
-
-package storage
-
-import (
- "time"
-
- "golang.org/x/sys/unix"
-)
-
-func (l *lockfile) TouchedSince(when time.Time) bool {
- st := unix.Stat_t{}
- err := unix.Fstat(int(l.fd), &st)
- if err != nil {
- return true
- }
- touched := time.Unix(st.Mtimespec.Unix())
- return when.Before(touched)
-}