summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-06-02 13:54:04 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-06-02 13:54:04 +0200
commit7997b678f292bf59dcca79d2791258d219e7a676 (patch)
tree9fefbbb7a856027f622cce785028dff5b2189560 /HISTORY
parent9847c7571dc8f76301dcff7a6eff8075f2179b09 (diff)
downloadvdr-7997b678f292bf59dcca79d2791258d219e7a676.tar.gz
vdr-7997b678f292bf59dcca79d2791258d219e7a676.tar.bz2
Removed the call to pthread_setschedparam(childTid, SCHED_RR, 0) in thread.c
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY6
1 files changed, 5 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 66258dd0..1ad80f7a 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4746,9 +4746,13 @@ Video Disk Recorder Revision History
- Fixed deleting channels in case the current channel's number changes (reported
by Mirko Dölle).
-2006-05-28: Version 1.4.0-3
+2006-06-02: Version 1.4.0-3
- Fixed the PremiereContentTransmissionDescriptor in 'libsi' (thanks to Stefan
Huelswitt).
- Removed all the compatibility '#if APIVERSNUM...' stuff and instead increased
the API version number - plugins will have to be recompiled.
+- Removed the call to pthread_setschedparam(childTid, SCHED_RR, 0) in thread.c,
+ because it caused a compiler warning with g++ 4.1.1 (reported by Ville Skyttä).
+ Since the third parameter has to be non-null to have any effect, the call was
+ presumably a NOP, anyway.