Changeset 8843 for trunk/MagicSoft/Cosy/tcpip
- Timestamp:
- 01/31/08 11:38:09 (17 years ago)
- Location:
- trunk/MagicSoft/Cosy/tcpip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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 };
Note:
See TracChangeset
for help on using the changeset viewer.