File: atime_linux.go

package info (click to toggle)
gocryptfs 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,132 kB
  • sloc: sh: 1,091; ansic: 208; makefile: 88
file content (9 lines) | stat: -rw-r--r-- 151 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
package matrix

import (
	"syscall"
)

func extractAtimeMtime(st syscall.Stat_t) [2]syscall.Timespec {
	return [2]syscall.Timespec{st.Atim, st.Mtim}
}