From e53e43d2b85095ec24e89fb8721d9c92e13ed930 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 18 Oct 2003 12:29:08 +0200 Subject: The cThread class now accepts a 'Description' parameter --- recorder.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'recorder.c') diff --git a/recorder.c b/recorder.c index 2583bae2..c46c5651 100644 --- a/recorder.c +++ b/recorder.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recorder.c 1.7 2003/08/02 13:01:19 kls Exp $ + * $Id: recorder.c 1.8 2003/10/18 11:35:02 kls Exp $ */ #include @@ -25,6 +25,7 @@ cRecorder::cRecorder(const char *FileName, int Ca, int Priority, int VPid, int APid1, int APid2, int DPid1, int DPid2) :cReceiver(Ca, Priority, 5, VPid, APid1, APid2, DPid1, DPid2) +,cThread("recording") { ringBuffer = NULL; remux = NULL; @@ -106,8 +107,6 @@ void cRecorder::Receive(uchar *Data, int Length) void cRecorder::Action(void) { - dsyslog("recording thread started (pid=%d)", getpid()); - time_t t = time(NULL); active = true; while (active) { @@ -143,6 +142,4 @@ void cRecorder::Action(void) else usleep(1); // this keeps the CPU load low } - - dsyslog("recording thread ended (pid=%d)", getpid()); } -- cgit v1.2.3