Changeset 8843


Ignore:
Timestamp:
01/31/08 11:38:09 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy
Files:
2 deleted
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/Changelog

    r8841 r8843  
    11                                                                  -*-*- 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
    214
    315 2008/01/30 Thomas Bretz
  • trunk/MagicSoft/Cosy/base/Makefile

    r8817 r8843  
    1717
    1818SRCFILES = MStopwatch.cc \
    19            MThread.cc \
    2019           MTimeout.cc \
    2120           MStar.cc \
  • trunk/MagicSoft/Cosy/base/msgqueue.cc

    r8830 r8843  
    77// This creates the Message queue thread,
    88//
    9 MsgQueue::MsgQueue() : MyThreadX("MsqQueue"), fNextMsg(0), fNextPtr(0)
     9MsgQueue::MsgQueue() : MThread("MsqQueue"), fNextMsg(0), fNextPtr(0)
    1010{
    1111    RunThread();
  • trunk/MagicSoft/Cosy/base/msgqueue.h

    r8830 r8843  
    1313#define WM_QUIT 0xffff
    1414
    15 class MsgQueue : public MyThreadX
     15class MsgQueue : public MThread
    1616{
    1717private:
  • trunk/MagicSoft/Cosy/candrv/nodedrv.cc

    r8835 r8843  
    485485// least one Nodeguard message was answered.
    486486//
    487 class NodeGuard : public MyThreadX
     487class NodeGuard : public MThread
    488488{
    489489    Double_t fTimeoutTime;     //[s]
     
    497497public:
    498498    NodeGuard(NodeDrv *drv, Int_t guard, Int_t ltf, Bool_t canopen)
    499         : MyThreadX("NodeGuard"), fGuardTime(guard/1000.), fLifeTimeFactor(ltf), fIsCanOpen(canopen), fDrv(drv) { }
     499        : MThread("NodeGuard"), fGuardTime(guard/1000.), fLifeTimeFactor(ltf), fIsCanOpen(canopen), fDrv(drv) { }
    500500
    501501    void Reset(const timeval_t *tv=NULL)
  • trunk/MagicSoft/Cosy/candrv/vmodican.h

    r8831 r8843  
    2525class CanOpen;
    2626
    27 class VmodIcan : public Interface, public MyThreadX
     27class VmodIcan : public Interface, public MThread
    2828{
    2929private:
  • trunk/MagicSoft/Cosy/main/MCosy.h

    r8839 r8843  
    5353class MDriveCom;
    5454
    55 class MTTalk : public MyThreadX
     55class MTTalk : public MThread
    5656{
    5757private:
     
    6161
    6262public:
    63     MTTalk(MCosy *cosy) : MyThreadX("MTTalk"), fCosy(cosy)
     63    MTTalk(MCosy *cosy) : MThread("MTTalk"), fCosy(cosy)
    6464    {
    6565        //SetPriority(10);
  • trunk/MagicSoft/Cosy/main/MTracking.h

    r8814 r8843  
    1414class SlaStars;
    1515
    16 class MTracking : public MSlewing, public MyThreadX
     16class MTracking : public MSlewing, public MThread
    1717{
    1818private:
     
    4242
    4343public:
    44     MTracking(MCosy *cosy) : MSlewing(cosy), MyThreadX("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) { }
    4545
    4646    void TrackPosition(const RaDec &dst); // ra, dec [rad]
  • trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc

    r8816 r8843  
    208208            delete fServSock;
    209209            fServSock=NULL;
    210             MyThreadX::Sleep(5000000);
     210            MThread::Sleep(5000000);
    211211            continue;
    212212        }
  • trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h

    r8816 r8843  
    1515
    1616// A generalized class for receiving over tcp/ip
    17 class MTcpIpI : public MyThreadX
     17class MTcpIpI : public MThread
    1818{
    1919private:
     
    2525
    2626public:
    27     MTcpIpI(Int_t rx) : MyThreadX(Form("MTcpIpI::%d", rx)), fPortRx(rx) { /*RunThread();*/ }
     27    MTcpIpI(Int_t rx) : MThread(Form("MTcpIpI::%d", rx)), fPortRx(rx) { /*RunThread();*/ }
    2828    ~MTcpIpI() { CancelThread(); }
    2929};
  • trunk/MagicSoft/Cosy/videodev/Camera.cc

    r8832 r8843  
    3434using namespace std;
    3535
    36 Camera::Camera(PixClient &client, Int_t nch) : MyThreadX("Camera"), fClient(client), fVideo(0)
     36Camera::Camera(PixClient &client, Int_t nch) : MThread("Camera"), fClient(client), fVideo(0)
    3737{
    3838    fVideo = new MVideo;
  • trunk/MagicSoft/Cosy/videodev/Camera.h

    r8832 r8843  
    1313class PixClient;
    1414
    15 class Camera : public PixGetter, public MyThreadX
     15class Camera : public PixGetter, public MThread
    1616{
    1717private:
Note: See TracChangeset for help on using the changeset viewer.