std::this_thread::sleep_until (3) Linux Manual Page
std::this_thread::sleep_until – std::this_thread::sleep_until Synopsis Defined in header<thread> template <class Clock, class Duration> (since C++ 11) void sleep_until(const std::chrono::time_point<Clock, Duration> &sleep_time); Blocks the execution of the current thread until specified sleep_time has been reached. The clock tied to sleep_time is used, which means that adjustments of the clock are taken into account. Thus, the duration of…
