Changeset 8843
- Timestamp:
- 01/31/08 11:38:09 (17 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 2 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r8841 r8843 1 1 -*-*- END -*-*- 2 3 2008/01/31 Thomas Bretz 4 5 * base/Makefile: 6 - removed MThread... now in Mars 7 8 * base/msgqueue.[h,cc], candrv/nodedrv.cc, candrv/vmodican.h, 9 main/MCosy.h, main/MTracking.h, tcpip/MTcpIpIO.[h,cc], 10 videodev/Camera.[h,cc]: 11 - renamed MyThreadX to MThread 12 13 2 14 3 15 2008/01/30 Thomas Bretz -
trunk/MagicSoft/Cosy/base/Makefile
r8817 r8843 17 17 18 18 SRCFILES = MStopwatch.cc \ 19 MThread.cc \20 19 MTimeout.cc \ 21 20 MStar.cc \ -
trunk/MagicSoft/Cosy/base/msgqueue.cc
r8830 r8843 7 7 // This creates the Message queue thread, 8 8 // 9 MsgQueue::MsgQueue() : M yThreadX("MsqQueue"), fNextMsg(0), fNextPtr(0)9 MsgQueue::MsgQueue() : MThread("MsqQueue"), fNextMsg(0), fNextPtr(0) 10 10 { 11 11 RunThread(); -
trunk/MagicSoft/Cosy/base/msgqueue.h
r8830 r8843 13 13 #define WM_QUIT 0xffff 14 14 15 class MsgQueue : public M yThreadX15 class MsgQueue : public MThread 16 16 { 17 17 private: -
trunk/MagicSoft/Cosy/candrv/nodedrv.cc
r8835 r8843 485 485 // least one Nodeguard message was answered. 486 486 // 487 class NodeGuard : public M yThreadX487 class NodeGuard : public MThread 488 488 { 489 489 Double_t fTimeoutTime; //[s] … … 497 497 public: 498 498 NodeGuard(NodeDrv *drv, Int_t guard, Int_t ltf, Bool_t canopen) 499 : M yThreadX("NodeGuard"), fGuardTime(guard/1000.), fLifeTimeFactor(ltf), fIsCanOpen(canopen), fDrv(drv) { }499 : MThread("NodeGuard"), fGuardTime(guard/1000.), fLifeTimeFactor(ltf), fIsCanOpen(canopen), fDrv(drv) { } 500 500 501 501 void Reset(const timeval_t *tv=NULL) -
trunk/MagicSoft/Cosy/candrv/vmodican.h
r8831 r8843 25 25 class CanOpen; 26 26 27 class VmodIcan : public Interface, public M yThreadX27 class VmodIcan : public Interface, public MThread 28 28 { 29 29 private: -
trunk/MagicSoft/Cosy/main/MCosy.h
r8839 r8843 53 53 class MDriveCom; 54 54 55 class MTTalk : public M yThreadX55 class MTTalk : public MThread 56 56 { 57 57 private: … … 61 61 62 62 public: 63 MTTalk(MCosy *cosy) : M yThreadX("MTTalk"), fCosy(cosy)63 MTTalk(MCosy *cosy) : MThread("MTTalk"), fCosy(cosy) 64 64 { 65 65 //SetPriority(10); -
trunk/MagicSoft/Cosy/main/MTracking.h
r8814 r8843 14 14 class SlaStars; 15 15 16 class MTracking : public MSlewing, public M yThreadX16 class MTracking : public MSlewing, public MThread 17 17 { 18 18 private: … … 42 42 43 43 public: 44 MTracking(MCosy *cosy) : MSlewing(cosy), M yThreadX("MTracking"), fTrackAcc(0.1), fTrackDec(0.1), fOut(0) { }44 MTracking(MCosy *cosy) : MSlewing(cosy), MThread("MTracking"), fTrackAcc(0.1), fTrackDec(0.1), fOut(0) { } 45 45 46 46 void TrackPosition(const RaDec &dst); // ra, dec [rad] -
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
r8816 r8843 208 208 delete fServSock; 209 209 fServSock=NULL; 210 M yThreadX::Sleep(5000000);210 MThread::Sleep(5000000); 211 211 continue; 212 212 } -
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h
r8816 r8843 15 15 16 16 // A generalized class for receiving over tcp/ip 17 class MTcpIpI : public M yThreadX17 class MTcpIpI : public MThread 18 18 { 19 19 private: … … 25 25 26 26 public: 27 MTcpIpI(Int_t rx) : M yThreadX(Form("MTcpIpI::%d", rx)), fPortRx(rx) { /*RunThread();*/ }27 MTcpIpI(Int_t rx) : MThread(Form("MTcpIpI::%d", rx)), fPortRx(rx) { /*RunThread();*/ } 28 28 ~MTcpIpI() { CancelThread(); } 29 29 }; -
trunk/MagicSoft/Cosy/videodev/Camera.cc
r8832 r8843 34 34 using namespace std; 35 35 36 Camera::Camera(PixClient &client, Int_t nch) : M yThreadX("Camera"), fClient(client), fVideo(0)36 Camera::Camera(PixClient &client, Int_t nch) : MThread("Camera"), fClient(client), fVideo(0) 37 37 { 38 38 fVideo = new MVideo; -
trunk/MagicSoft/Cosy/videodev/Camera.h
r8832 r8843 13 13 class PixClient; 14 14 15 class Camera : public PixGetter, public M yThreadX15 class Camera : public PixGetter, public MThread 16 16 { 17 17 private:
Note:
See TracChangeset
for help on using the changeset viewer.