| 1463 | }; |
| 1464 | |
| 1465 | static SC::TimeMs posixTimespecToTimeMs(const struct timespec& ts) |
| 1466 | { |
| 1467 | constexpr SC::int64_t nanosecondsToMilliseconds = 1000 * 1000; |
| 1468 | constexpr SC::int64_t roundingNanoseconds = nanosecondsToMilliseconds / 2; |
| 1469 | return SC::TimeMs{static_cast<SC::int64_t>(ts.tv_sec) * 1000 + |
| 1470 | (static_cast<SC::int64_t>(ts.tv_nsec) + roundingNanoseconds) / nanosecondsToMilliseconds}; |
| 1471 | } |
| 1472 | |
| 1473 | static SC::FileSystemEntryType posixEntryTypeFromMode(mode_t mode) |
| 1474 | { |