mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
perf_timer: add a way to get and reset the current time
This commit is contained in:
parent
c1581a5bb8
commit
6a507dab6f
2 changed files with 18 additions and 2 deletions
|
@ -165,4 +165,20 @@ void PerformanceTimer::resume()
|
|||
paused = false;
|
||||
}
|
||||
|
||||
void PerformanceTimer::reset()
|
||||
{
|
||||
if (paused)
|
||||
ticks = 0;
|
||||
else
|
||||
ticks = get_tick_count();
|
||||
}
|
||||
|
||||
uint64_t PerformanceTimer::value() const
|
||||
{
|
||||
uint64_t v = ticks;
|
||||
if (!paused)
|
||||
v = get_tick_count() - v;
|
||||
return ticks_to_ns(v);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -51,8 +51,8 @@ public:
|
|||
~PerformanceTimer();
|
||||
void pause();
|
||||
void resume();
|
||||
|
||||
uint64_t value() const { return ticks; }
|
||||
void reset();
|
||||
uint64_t value() const;
|
||||
|
||||
protected:
|
||||
uint64_t ticks;
|
||||
|
|
Loading…
Reference in a new issue