Go to the documentation of this file.
37 #include "config/use_posix_clock.hh"
45 ::clock_gettime(monotonic ? CLOCK_MONOTONIC : CLOCK_REALTIME, &
_time);
48 ::gettimeofday(&tv, NULL);
77 ctime_r(&
sec, buf,
sizeof(buf));
85 struct tm *tm = localtime(&
sec);
86 strftime(buf,
sizeof(buf),
format.c_str(), tm);
93 double time = double(*
this);
94 double secs = fmod(
time, 60.0);
95 double all_mins = floor(
time / 60.0);
96 double mins = fmod(all_mins, 60.0);
97 double hours = floor(all_mins / 60.0);
99 std::stringstream str;
113 if (secs < 10.0 && !str.str().empty())
144 clock_nanosleep(CLOCK_MONOTONIC, 0, &
ts, NULL);
146 nanosleep(&
ts, NULL);
154 char *
tz = getenv(
"TZ");
161 fatal(
"Failed to reserve memory for UTC time conversion\n");
168 time_t ret = mktime(time);
void set(time_t _sec, long _nsec)
Set the current time.
#define fatal(...)
This implements a cprintf based fatal() function.
void setTick(Tick ticks)
Set the current time from a value measured in Ticks.
std::string date(const std::string &format="") const
time_t mkutctime(struct tm *time)
uint64_t Tick
Tick count type.
void _set(bool monotonic)
Internal time set function.
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
void sleep(const Time &time)
void unserialize(const std::string &base, CheckpointIn &cp)
Tick getTick() const
Get the current time from a value measured in Ticks.
void paramOut(CheckpointOut &cp, const std::string &name, ExtMachInst const &machInst)
void serialize(const std::string &base, CheckpointOut &cp) const
std::ostream CheckpointOut
Bitfield< 31, 29 > format
void paramIn(CheckpointIn &cp, const std::string &name, ExtMachInst &machInst)
const Time & operator=(const Time &other)
time_t sec() const
Accessors for getting and setting the current clock.
Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17