summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-10-04 12:32:31 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-10-04 12:32:31 +0200
commit1e9b16d20bacb9795a07af5ff61db67fc78c3728 (patch)
tree89f487b4781a65b81e2625f28a18207e82eb1cec /HISTORY
parent5a407d0e68c8b0ef00613f6839aeadbf6b92224a (diff)
downloadvdr-1e9b16d20bacb9795a07af5ff61db67fc78c3728.tar.gz
vdr-1e9b16d20bacb9795a07af5ff61db67fc78c3728.tar.bz2
The cThread constructor now has an additional boolean parameter that can be set to true to have this thread run at a lower priority
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY7
1 files changed, 6 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 03808ab0..39232718 100644
--- a/HISTORY
+++ b/HISTORY
@@ -7272,7 +7272,7 @@ Video Disk Recorder Revision History
".keep" to prevent a directory from being deleted when it is empty. Currently the
only file name that is ignored is ".sort".
-2012-10-03: Version 1.7.32
+2012-10-04: Version 1.7.32
- Pressing the Play key during normal live viewing mode now opens the Recordings menu
if there is no "last viewed" recording (thanks to Alexander Wenzel).
@@ -7280,3 +7280,8 @@ Video Disk Recorder Revision History
- cIoThrottle::Engaged() is now also checked in cRemoveDeletedRecordingsThread::Action(),
to suspend removing deleted recordings in case this is necessary to make room for
new, ongoing recordings (suggested by Udo Richter).
+- The cThread constructor now has an additional boolean parameter that can be set to
+ true to have this thread run at a lower priority. Plugin authors that use low
+ priority threads may want to use this instead of the calls to SetPriority(19) and
+ SetIOPriority(7). The priority of a thread ("low" or "high") is now logged when the
+ thread starts.