From dadd26f980d44c7e5e5f51c1fa502532d7c098b4 Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Mon, 22 Dec 2014 21:19:24 +0200 Subject: [PATCH] Removed an unnecessary wait. --- device.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/device.c b/device.c index f44431d..1da060e 100644 --- a/device.c +++ b/device.c @@ -488,8 +488,6 @@ bool cSatipDevice::GetTSPacket(uchar *&dataP) dataP = GetData(); return true; } - // Reduce cpu load by preventing busylooping - cCondWait::SleepMs(10); dataP = NULL; return true; }