*** empty log message ***
authorChris Tallon <chris@vomp.tv>
Fri, 5 May 2006 21:50:51 +0000 (21:50 +0000)
committerChris Tallon <chris@vomp.tv>
Fri, 5 May 2006 21:50:51 +0000 (21:50 +0000)
thread.cc
thread.h

index 7644075cab531533a45522439e1c3ca54062c60f..39ec019bf17cd1cda8641c4af2e199f5f7717f4c 100644 (file)
--- a/thread.cc
+++ b/thread.cc
 
 #include "thread.h"
 
+Thread::Thread()
+{
+  threadActive = 0;
+}
+
 char Thread::threadIsActive()
 {
   return threadActive;
index 12da488090841693f32709805c0fbdd71cdcee39..0cb639acba25d49d7743a449662504c945113ea6 100644 (file)
--- a/thread.h
+++ b/thread.h
@@ -50,6 +50,7 @@ class Thread
     char threadActive;
 
   public:
+    Thread();
     void threadInternalStart2();
 };