37 #include "config/use_posix_clock.hh"
47 ::clock_gettime(monotonic ? CLOCK_MONOTONIC : CLOCK_REALTIME, &_time);
50 ::gettimeofday(&tv, NULL);
74 time_t sec = this->sec();
79 ctime_r(&sec, buf,
sizeof(buf));
87 struct tm *tm = localtime(&sec);
88 strftime(buf,
sizeof(buf),
format.c_str(), tm);
95 double time = double(*
this);
96 double secs = fmod(time, 60.0);
97 double all_mins = floor(time / 60.0);
98 double mins = fmod(all_mins, 60.0);
99 double hours = floor(all_mins / 60.0);
115 if (secs < 10.0 && !str.str().empty())
146 clock_nanosleep(CLOCK_MONOTONIC, 0, &
ts, NULL);
148 nanosleep(&
ts, NULL);
156 char *
tz = getenv(
"TZ");
163 fatal(
"Failed to reserve memory for UTC time conversion\n");
170 time_t ret = mktime(time);