Changeset 2518 for trunk/MagicSoft/Cosy/candrv/nodedrv.h
- Timestamp:
- 11/17/03 13:50:48 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/candrv/nodedrv.h
r2278 r2518 19 19 20 20 class Network; 21 class NodeGuard; 21 22 22 class NodeDrv : public Log , public TObject23 class NodeDrv : public Log 23 24 { 24 25 private: … … 30 31 int fError; 31 32 32 Bool_t fIsZombie; // A Zombie node is a node which doesn't answer...33 Bool_t fIsZombie; // A Zombie node is a node which doesn't answer... 33 34 34 TTimer *fTimeout; 35 Int_t fGuardTime; // Guardtime [ms] 36 Int_t fLifeTimeFactor; 37 Double_t fTimeoutTime; 38 Bool_t fTimerOn; 35 NodeGuard *fGuard; 39 36 40 Bool_t HandleTimer(TTimer *t); 37 Int_t fGuardTime; // Guardtime [ms] 38 Int_t fLifeTimeFactor; 41 39 42 40 protected: … … 46 44 Int_t GetLifeTimeFactor() const { return fLifeTimeFactor; } 47 45 Int_t GetGuardTime() const { return fGuardTime; } 48 49 virtual void SetZombie();50 46 51 47 public: … … 67 63 68 64 bool IsZombieNode() const { return fIsZombie; } 65 void SetZombie(bool stopguard=true); 69 66 70 67 virtual void HandleSDO(WORD_t idx, BYTE_t subidx, LWORD_t val, timeval_t *tv);
Note:
See TracChangeset
for help on using the changeset viewer.