summaryrefslogtreecommitdiffstats
path: root/monitor/tach_sensor.cpp
diff options
context:
space:
mode:
authorWilliam A. Kennington III <wak@google.com>2018-10-30 19:49:29 -0700
committerMatthew Barth <msbarth@linux.ibm.com>2019-02-05 16:20:02 +0000
commit8fd879fb7bb9ed34fe69581dc714b4158046519f (patch)
treeaa33e860d7d018fd9670599039e459a4bebc6324 /monitor/tach_sensor.cpp
parenta1aef7a100a9b27d2133622a695bb8c09c2869bf (diff)
downloadphosphor-fan-presence-8fd879fb7bb9ed34fe69581dc714b4158046519f.tar.gz
phosphor-fan-presence-8fd879fb7bb9ed34fe69581dc714b4158046519f.zip
Remove timer in favor of sdeventplus/utility/timer
This removes the custom timer implementation and moves to the sdeventplus utility. Functionally this should make no change Tested: Built and run through the unit test suite. Change-Id: Ib7ee90d489d5db72496aaaca91c3cf5490ad47d6 Signed-off-by: William A. Kennington III <wak@google.com>
Diffstat (limited to 'monitor/tach_sensor.cpp')
-rw-r--r--monitor/tach_sensor.cpp17
1 files changed, 2 insertions, 15 deletions
diff --git a/monitor/tach_sensor.cpp b/monitor/tach_sensor.cpp
index 26ba3c9..5494450 100644
--- a/monitor/tach_sensor.cpp
+++ b/monitor/tach_sensor.cpp
@@ -221,24 +221,11 @@ void TachSensor::handleTachChange(sdbusplus::message::message& msg)
void TachSensor::startTimer(TimerMode mode)
{
- if (!timerRunning())
+ if (!timerRunning() || mode != _timerMode)
{
- _timer.start(
- getDelay(mode),
- util::Timer::TimerType::oneshot);
+ _timer.restartOnce(getDelay(mode));
_timerMode = mode;
}
- else
- {
- if (mode != _timerMode)
- {
- _timer.stop();
- _timer.start(
- getDelay(mode),
- util::Timer::TimerType::oneshot);
- _timerMode = mode;
- }
- }
}
std::chrono::microseconds TachSensor::getDelay(TimerMode mode)
OpenPOWER on IntegriCloud