diff options
Diffstat (limited to 'libpod/finished_amd64.go')
-rw-r--r-- | libpod/finished_amd64.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libpod/finished_amd64.go b/libpod/finished_amd64.go new file mode 100644 index 000000000..11dbc9181 --- /dev/null +++ b/libpod/finished_amd64.go @@ -0,0 +1,16 @@ +// +build !arm,!386 + +package libpod + +import ( + "os" + "syscall" + "time" +) + +// Get the created time of a file +// Only works on 64-bit OSes +func getFinishedTime(fi os.FileInfo) time.Time { + st := fi.Sys().(*syscall.Stat_t) + return time.Unix(st.Ctim.Sec, st.Ctim.Nsec) +} |