diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-10-24 10:34:20 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-10-24 10:34:20 +0200 |
commit | 70e60380562fb25a7acce9b47c75842d60722dd0 (patch) | |
tree | 7cd5a91474795be92ace936e24678fb5f1e890f0 /thread.h | |
parent | 73fde7480a71c1f92d26c333bad06d12dd5019be (diff) | |
download | vdr-70e60380562fb25a7acce9b47c75842d60722dd0.tar.gz vdr-70e60380562fb25a7acce9b47c75842d60722dd0.tar.bz2 |
Added some checks when cancelling a thread and removed the usleep() in cThread::Start(); removed 'running' from cThread
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: thread.h 1.22 2004/10/24 09:46:36 kls Exp $ + * $Id: thread.h 1.23 2004/10/24 10:28:48 kls Exp $ */ #ifndef __THREAD_H @@ -71,7 +71,6 @@ class cThread { private: pthread_t parentTid, childTid; cMutex mutex; - bool running; char *description; static bool emergencyExitRequested; static void *StartThread(cThread *Thread); |