summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-10-31 09:54:50 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-10-31 09:54:50 +0100
commit4f67ade2dcac00d3807df19f18601ee2eb267818 (patch)
tree12073f6b43e6e532171fc5b215d2f131a6fa71c8 /HISTORY
parent3e3f30d88dd33fc1a9859fa59912cd66dd66437d (diff)
downloadvdr-4f67ade2dcac00d3807df19f18601ee2eb267818.tar.gz
vdr-4f67ade2dcac00d3807df19f18601ee2eb267818.tar.bz2
Now calling pthread_cond_broadcast() in the desctructor of cCondWait and cCondVar; using pthread_cond_broadcast() instead of pthread_cond_signal() in cCondWait
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY4
1 files changed, 4 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index dbe592ee..6f802d9c 100644
--- a/HISTORY
+++ b/HISTORY
@@ -3089,3 +3089,7 @@ Video Disk Recorder Revision History
- Immediately displaying the new channel info when switching channel groups.
- Moved the main program loop variables further up to allow compilation with
older compiler versions (thanks to Marco Schlüßler for reporting this one).
+- Now calling pthread_cond_broadcast() in the desctructor of cCondWait and
+ cCondVar to make sure any sleepers will wake up (suggested by Werner Fink).
+ Also using pthread_cond_broadcast() instead of pthread_cond_signal() in
+ cCondWait, in case there is more than one sleeper.