From 86588376786a0f8a031a04b8a2be5514fc8ed87c Mon Sep 17 00:00:00 2001 From: wirbel Date: Sat, 20 Feb 2021 11:43:52 +0100 Subject: [PATCH] HasLock(): add timeout feature (v2) --- device.c | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/device.c b/device.c index 8742b70..e267ecc 100644 --- a/device.c +++ b/device.c @@ -450,16 +450,15 @@ bool cSatipDevice::HasLock(int timeoutMsP) const debug16("%s (%d) [device %d]", __PRETTY_FUNCTION__, timeoutMsP, deviceIndexM); if (timeoutMsP <= 0) return (pTunerM && pTunerM->HasLock()); - else { - const int intervalMs = 100; - for (int t = 0; t < timeoutMsP; t += intervalMs) { - if (HasLock(0)) - return true; - cCondWait::SleepMs(intervalMs); - } - return HasLock(0); - } + cTimeMs timer(timeoutMsP); + + while (!timer.TimedOut()) { + if (HasLock(0)) + return true; + cCondWait::SleepMs(100); + } + return HasLock(0); } bool cSatipDevice::HasInternalCam(void)