summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-05-03 14:08:28 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-05-03 14:08:28 +0200
commit2cd7928fc6dcffa61298d15d0bde21cd6d856868 (patch)
tree5adb7bca0b3dcf8c642c95b07491a84c25334bd4 /thread.h
parent3fc00d2211c732b2b9ecdead946bb9d3a0d9c621 (diff)
downloadvdr-2cd7928fc6dcffa61298d15d0bde21cd6d856868.tar.gz
vdr-2cd7928fc6dcffa61298d15d0bde21cd6d856868.tar.bz2
Removed the (no longer necessary) 'panic' stuff 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 9fc48b64..05997424 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.14 2002/08/15 11:40:06 kls Exp $
+ * $Id: thread.h 1.15 2003/05/03 14:03:36 kls Exp $
*/
#ifndef __THREAD_H
@@ -48,8 +48,6 @@ private:
cMutex mutex;
pid_t parentPid, threadPid;
bool running;
- static time_t lastPanic;
- static int panicLevel;
static bool emergencyExitRequested;
static bool signalHandlerInstalled;
static void SignalHandler(int signum);
@@ -65,7 +63,6 @@ public:
virtual ~cThread();
bool Start(void);
bool Active(void);
- static void RaisePanic(void);
static bool EmergencyExit(bool Request = false);
};