Fdatasync is a wrapper around file.Sync(). Special handling is needed on linux platform.
(f *os.File)
| 25 | |
| 26 | // Fdatasync is a wrapper around file.Sync(). Special handling is needed on linux platform. |
| 27 | func Fdatasync(f *os.File) error { |
| 28 | return f.Sync() |
| 29 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…