2024-08-26 21:03:25 +00:00
|
|
|
package fs
|
2015-02-03 20:18:19 +00:00
|
|
|
|
2016-03-28 13:26:04 +00:00
|
|
|
import "syscall"
|
2015-04-25 00:36:54 +00:00
|
|
|
|
2024-08-26 20:35:22 +00:00
|
|
|
func nodeRestoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
2015-05-14 21:06:11 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-08-14 13:57:47 +00:00
|
|
|
|
2020-10-18 21:39:42 +00:00
|
|
|
func (s statT) atim() syscall.Timespec { return s.Atimespec }
|
|
|
|
func (s statT) mtim() syscall.Timespec { return s.Mtimespec }
|
|
|
|
func (s statT) ctim() syscall.Timespec { return s.Ctimespec }
|