summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-10-24 09:53:12 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-10-24 09:53:12 +0200
commit73fde7480a71c1f92d26c333bad06d12dd5019be (patch)
tree5b6f790b7e3df1d7ff1986040ff76f50acf59b4e /thread.h
parent343df6266eed68ef4d3f683e383e7237c0b75cdd (diff)
downloadvdr-73fde7480a71c1f92d26c333bad06d12dd5019be.tar.gz
vdr-73fde7480a71c1f92d26c333bad06d12dd5019be.tar.bz2
Removed the signal handler and WakeUp() call from cThread
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/thread.h b/thread.h
index 7d9254c0..d57f0b6b 100644
--- a/thread.h
+++ b/thread.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: thread.h 1.21 2004/10/15 13:16:39 kls Exp $
+ * $Id: thread.h 1.22 2004/10/24 09:46:36 kls Exp $
*/
#ifndef __THREAD_H
@@ -74,13 +74,10 @@ private:
bool running;
char *description;
static bool emergencyExitRequested;
- static bool signalHandlerInstalled;
- static void SignalHandler(int signum);
static void *StartThread(cThread *Thread);
protected:
void Lock(void) { mutex.Lock(); }
void Unlock(void) { mutex.Unlock(); }
- void WakeUp(void);
virtual void Action(void) = 0;
void Cancel(int WaitSeconds = 0);
public: