(path, _fh, _datasync, cb)
| 867 | }, |
| 868 | |
| 869 | fsync(path, _fh, _datasync, cb) { |
| 870 | // fsync(2) is the documented user-facing flush. Spill |
| 871 | // whatever's buffered so subsequent VFS reads see it. |
| 872 | cb(flushEntry(path)); |
| 873 | }, |
| 874 | |
| 875 | fsyncdir(_path, _fh, _datasync, cb) { |
| 876 | cb(0); |
nothing calls this directly
no test coverage detected