Kernel: Use UnixDateTime wherever applicable

"Wherever applicable" = most places, actually :^), especially for
networking and filesystem timestamps.

This includes changes to unzip, which uses DOSPackedTime, since that is
changed for the FAT file systems.
This commit is contained in:
kleines Filmröllchen 2023-03-13 22:11:13 +01:00 committed by Jelle Raaijmakers
parent c1323febc2
commit 939600d2d4
Notes: sideshowbarker 2024-07-17 06:46:15 +09:00
41 changed files with 115 additions and 125 deletions

View file

@ -38,7 +38,7 @@ InodeMetadata DevPtsFSInode::metadata() const
{
if (auto pty = m_pty.strong_ref()) {
auto metadata = m_metadata;
metadata.mtime = Duration::from_timespec({ pty->time_of_last_write(), 0 });
metadata.mtime = pty->time_of_last_write();
return metadata;
}
return m_metadata;