diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-18 12:29:08 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-18 12:29:08 +0200 |
commit | e53e43d2b85095ec24e89fb8721d9c92e13ed930 (patch) | |
tree | ed5b2d1614a146e986ad2fee4b8933b52cb160b5 /rcu.c | |
parent | 15816ee8e4a1be96bba1da9199739f1666a87703 (diff) | |
download | vdr-e53e43d2b85095ec24e89fb8721d9c92e13ed930.tar.gz vdr-e53e43d2b85095ec24e89fb8721d9c92e13ed930.tar.bz2 |
The cThread class now accepts a 'Description' parameter
Diffstat (limited to 'rcu.c')
-rw-r--r-- | rcu.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: rcu.c 1.5 2003/05/02 14:42:40 kls Exp $ + * $Id: rcu.c 1.6 2003/10/18 11:34:30 kls Exp $ */ #include "rcu.h" @@ -18,6 +18,7 @@ cRcuRemote::cRcuRemote(char *DeviceName) :cRemote("RCU") +,cThread("RCU remote control") { dp = 0; mode = modeB; @@ -92,8 +93,6 @@ void cRcuRemote::Action(void) } buffer; #pragma pack() - dsyslog("RCU remote control thread started (pid=%d)", getpid()); - time_t LastCodeRefresh = 0; int FirstTime = 0; uint64 LastCommand = 0; |