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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 67 - (show 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
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