diff options
Diffstat (limited to 'checks/timer.cpp')
-rw-r--r-- | checks/timer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/checks/timer.cpp b/checks/timer.cpp index 4abd8a05f..0a5a05de2 100644 --- a/checks/timer.cpp +++ b/checks/timer.cpp @@ -9,7 +9,8 @@ u64bit Timer::get_clock() return (tv.tv_sec * 1000000000ULL + tv.tv_nsec); } -Timer::Timer(const std::string& n) : name(n) +Timer::Timer(const std::string& n, u32bit e_mul) : + name(n), event_mult(e_mul) { time_used = 0; timer_start = 0; |