summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2017-05-30 11:06:55 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2017-05-30 11:06:55 +0200
commitf97a59597f53e2a207b624ab32f491131253987c (patch)
tree1447dc381514dd21c2143ce0fdeda40f1775c479 /device.h
parent6edfcda43a365cfd94ed6649d66a0adcbb965480 (diff)
downloadvdr-f97a59597f53e2a207b624ab32f491131253987c.tar.gz
vdr-f97a59597f53e2a207b624ab32f491131253987c.tar.bz2
Now using a separate mutex to fix the race between SVDRP CHAN and cDevice::HasProgramme()
Diffstat (limited to 'device.h')
-rw-r--r--device.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/device.h b/device.h
index f6aee4e9..83e51782 100644
--- a/device.h
+++ b/device.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.h 4.9 2017/05/09 11:24:47 kls Exp $
+ * $Id: device.h 4.10 2017/05/30 11:06:11 kls Exp $
*/
#ifndef __DEVICE_H
@@ -257,6 +257,7 @@ public:
// Channel facilities
private:
+ mutable cMutex mutexChannel;
time_t occupiedTimeout;
protected:
static int currentChannel;