| 65 | return pio("pwrite", _and_pwrite(), (void*)buf, count, offset); |
| 66 | } |
| 67 | virtual int fsync() override |
| 68 | { |
| 69 | for (auto x: m_files) |
| 70 | x->fsync(); |
| 71 | return 0; |
| 72 | } |
| 73 | virtual int fdatasync() override |
| 74 | { |
| 75 | for (auto x: m_files) |
no outgoing calls
no test coverage detected