| 28 | static constexpr std::array<std::string_view, 12> months{"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; |
| 29 | |
| 30 | void UninterruptibleSleep(const std::chrono::microseconds& n) { std::this_thread::sleep_for(n); } |
| 31 | |
| 32 | static std::atomic<std::chrono::seconds> g_mock_time{}; //!< For testing |
| 33 | std::atomic<bool> g_used_system_time{false}; |
no outgoing calls