(fd: Fd, times: &Timestamps)
| 213 | #[cfg(not(any(target_os = "espidf", target_os = "horizon", target_os = "vita")))] |
| 214 | #[inline] |
| 215 | pub fn futimens<Fd: AsFd>(fd: Fd, times: &Timestamps) -> io::Result<()> { |
| 216 | backend::fs::syscalls::futimens(fd.as_fd(), times) |
| 217 | } |
| 218 | |
| 219 | /// `fallocate(fd, mode, offset, len)`—Adjusts file allocation. |
| 220 | /// |