projects
/
vompclient.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e07476
)
*** empty log message ***
author
Chris Tallon
<chris@vomp.tv>
Fri, 5 May 2006 21:50:51 +0000
(21:50 +0000)
committer
Chris Tallon
<chris@vomp.tv>
Fri, 5 May 2006 21:50:51 +0000
(21:50 +0000)
thread.cc
patch
|
blob
|
history
thread.h
patch
|
blob
|
history
diff --git
a/thread.cc
b/thread.cc
index 7644075cab531533a45522439e1c3ca54062c60f..39ec019bf17cd1cda8641c4af2e199f5f7717f4c 100644
(file)
--- 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 12da488090841693f32709805c0fbdd71cdcee39..0cb639acba25d49d7743a449662504c945113ea6 100644
(file)
--- a/
thread.h
+++ b/
thread.h
@@
-50,6
+50,7
@@
class Thread
char threadActive;
public:
+ Thread();
void threadInternalStart2();
};