(&mut self, _tx_offset: u64, size: u64)
| 238 | } |
| 239 | |
| 240 | fn ftruncate(&mut self, _tx_offset: u64, size: u64) -> io::Result<()> { |
| 241 | self.set_len(size) |
| 242 | } |
| 243 | |
| 244 | #[cfg(all(feature = "fallocate", target_os = "linux"))] |
| 245 | fn fallocate(&mut self, size: u64) -> io::Result<()> { |