From acbdcb98902f6bfce0a5b74819338c6d7e9f1ec2 Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Fri, 5 May 2006 21:50:51 +0000 Subject: [PATCH] *** empty log message *** --- thread.cc | 5 +++++ thread.h | 1 + 2 files changed, 6 insertions(+) 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(); }; -- 2.39.2