diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2016-12-23 14:49:06 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2016-12-23 14:49:06 +0100 |
commit | 834ac04c3be267ecfb463a9741782bf315130404 (patch) | |
tree | 63d63020b9b1487e203d51c2b0a74e46fbbb5e1b | |
parent | e2ba3d09a5239a9da9b1344a8bd671b85b0f987b (diff) | |
download | vdr-834ac04c3be267ecfb463a9741782bf315130404.tar.gz vdr-834ac04c3be267ecfb463a9741782bf315130404.tar.bz2 |
Added a short sleep to cTSBuffer::Action() to avoid high CPU usage
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | device.c | 3 |
3 files changed, 5 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 9b5448e1..ca58ae8e 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3458,3 +3458,4 @@ Aitugan Sarbassov <isarbassov@gmail.com> Sergey Chernyavskiy <glenvt18@gmail.com> for reporting truncated date/time strings in the skins on multi-byte UTF-8 + for adding a short sleep to cTSBuffer::Action() to avoid high CPU usage @@ -8879,3 +8879,5 @@ Video Disk Recorder Revision History - Avoiding some duplicate code and unnecessary work in nit.c (thanks to Ville Skyttä). - Added support for the systemd watchdog (thanks to Marc Perrudin), +- Added a short sleep to cTSBuffer::Action() to avoid high CPU usage (thanks to + Sergey Chernyavskiy). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 4.2 2015/09/05 11:42:17 kls Exp $ + * $Id: device.c 4.3 2016/12/23 14:43:44 kls Exp $ */ #include "device.h" @@ -1768,6 +1768,7 @@ void cTSBuffer::Action(void) break; } } + cCondWait::SleepMs(10); // avoids small chunks of data, which cause high CPU usage, esp. on ARM CPUs } } } |