/[H7]/branches/linux-serial/server/thread.cpp
ViewVC logotype

Annotation of /branches/linux-serial/server/thread.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 67 - (hide annotations) (download)
Tue Feb 6 23:37:39 2007 UTC (17 years, 3 months ago) by torben
File size: 174 byte(s)
Added some more of the H7 linux server - now it basically works :)


1 torben 67
2     #include "thread.h"
3    
4    
5    
6     Thread::Thread()
7     : mContinue(true), mStopped(true)
8     {
9     }
10    
11     void Thread::stop()
12     {
13     mContinue = false;
14     }
15    
16     bool Thread::stopped()
17     {
18     return mStopped;
19     }

  ViewVC Help
Powered by ViewVC 1.1.20