summaryrefslogtreecommitdiffstats
path: root/timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'timer.cpp')
-rw-r--r--timer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/timer.cpp b/timer.cpp
index 4e8fd9a..06965de 100644
--- a/timer.cpp
+++ b/timer.cpp
@@ -51,13 +51,14 @@ int Timer::timeoutHandler(sd_event_source* eventSource,
auto timer = static_cast<Timer*>(userData);
timer->expired = true;
+ log<level::INFO>("Timer expired");
// Call optional user call back function if available
if(timer->userCallBack)
{
timer->userCallBack();
}
- log<level::INFO>("Timer expired");
+ sd_event_source_set_enabled(eventSource, SD_EVENT_OFF);
return 0;
}
@@ -80,6 +81,7 @@ int Timer::startTimer(std::chrono::microseconds timeValue)
{
// Disable the timer
setTimer(SD_EVENT_OFF);
+ expired = false;
// Get the current MONOTONIC time and add the delta
auto expireTime = getTime() + timeValue;
OpenPOWER on IntegriCloud