summaryrefslogtreecommitdiff
path: root/lirc.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-12-18 13:26:07 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-12-18 13:26:07 +0100
commit9bbcf23a86d9373eb1f0ecbd039636b1375b8a61 (patch)
tree7cd8dcf982b049f918006cf48657b2138fbc9465 /lirc.c
parentc1b39c523d297389e01addcf7f12b756a3038ad8 (diff)
downloadvdr-9bbcf23a86d9373eb1f0ecbd039636b1375b8a61.tar.gz
vdr-9bbcf23a86d9373eb1f0ecbd039636b1375b8a61.tar.bz2
Removed the LOCK_THREAD from the LIRC thread
Diffstat (limited to 'lirc.c')
-rw-r--r--lirc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lirc.c b/lirc.c
index d1aa4e59..ae905fdc 100644
--- a/lirc.c
+++ b/lirc.c
@@ -6,7 +6,7 @@
*
* LIRC support added by Carsten Koch <Carsten.Koch@icem.de> 2000-06-16.
*
- * $Id: lirc.c 1.7 2003/10/18 11:34:02 kls Exp $
+ * $Id: lirc.c 1.8 2004/12/18 13:25:11 kls Exp $
*/
#include "lirc.h"
@@ -41,6 +41,8 @@ cLircRemote::cLircRemote(char *DeviceName)
cLircRemote::~cLircRemote()
{
Cancel();
+ if (f >= 0)
+ close(f);
}
bool cLircRemote::Ready(void)
@@ -59,8 +61,6 @@ void cLircRemote::Action(void)
for (; f >= 0;) {
- LOCK_THREAD;
-
bool ready = cFile::FileReady(f, timeout);
int ret = ready ? safe_read(f, buf, sizeof(buf)) : -1;