(sxts linux.StatxTimestamp)
| 119 | } |
| 120 | |
| 121 | func timespecFromStatxTimestamp(sxts linux.StatxTimestamp) linux.Timespec { |
| 122 | return linux.Timespec{ |
| 123 | Sec: sxts.Sec, |
| 124 | Nsec: int64(sxts.Nsec), |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | // Fstat implements Linux syscall fstat(2). |
| 129 | func Fstat(t *kernel.Task, sysno uintptr, args arch.SyscallArguments) (uintptr, *kernel.SyscallControl, error) { |
no outgoing calls
no test coverage detected
searching dependent graphs…