diff options
author | Andreas Mair <andreas@vdr-developer.org> | 2011-04-14 16:04:27 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2011-04-14 16:04:27 +0200 |
commit | 902e8afe67ce1d9f56a16ea2ef89f71ce7f7139f (patch) | |
tree | 702f3a8142eb88f95bb38de253fecca6c771185c | |
parent | 6ef40959d92d41b83b276c38c3de55f39c2bf832 (diff) | |
download | vdr-plugin-extrecmenu-902e8afe67ce1d9f56a16ea2ef89f71ce7f7139f.tar.gz vdr-plugin-extrecmenu-902e8afe67ce1d9f56a16ea2ef89f71ce7f7139f.tar.bz2 |
Reducing I/O priority for cut/move thread (if VDR >= 1.7.6 is used).
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | tools.c | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -2,6 +2,7 @@ VDR Plugin 'extrecmenu' Revision History ---------------------------------------- 2011-xx-xx: Version 1.2.1 +- [amair] Reducing I/O priority for cut/move thread (if VDR >= 1.7.6 is used). - [amair] Fixed counting of hidden recordings if PIN plugin is used (Bug #421). - [amair] Ignore comments in dircmds.conf (Submitted by TomG @vdr-portal.de). - [sibbi] Added ability to configure items that should be shown in recording list. @@ -297,6 +297,9 @@ void WorkerThread::Action() MoveListItem *moveitem=NULL; SetPriority(19); +#if VDRVERSNUM >= 10706 + SetIOPriority(7); +#endif while(Running()) { |