From: Chris Tallon Date: Fri, 5 May 2006 21:50:51 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=acbdcb98902f6bfce0a5b74819338c6d7e9f1ec2;p=vompclient-marten.git *** empty log message *** --- diff --git a/thread.cc b/thread.cc index 7644075..39ec019 100644 --- a/thread.cc +++ b/thread.cc @@ -20,6 +20,11 @@ #include "thread.h" +Thread::Thread() +{ + threadActive = 0; +} + char Thread::threadIsActive() { return threadActive; diff --git a/thread.h b/thread.h index 12da488..0cb639a 100644 --- a/thread.h +++ b/thread.h @@ -50,6 +50,7 @@ class Thread char threadActive; public: + Thread(); void threadInternalStart2(); };