Ignore:
Timestamp:
11/17/03 13:50:48 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/candrv/nodedrv.h

    r2278 r2518  
    1919
    2020class Network;
     21class NodeGuard;
    2122
    22 class NodeDrv : public Log, public TObject
     23class NodeDrv : public Log
    2324{
    2425private:
     
    3031    int fError;
    3132
    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...
    3334
    34     TTimer  *fTimeout;
    35     Int_t    fGuardTime;      // Guardtime [ms]
    36     Int_t    fLifeTimeFactor;
    37     Double_t fTimeoutTime;
    38     Bool_t   fTimerOn;
     35    NodeGuard *fGuard;
    3936
    40     Bool_t HandleTimer(TTimer *t);
     37    Int_t   fGuardTime;      // Guardtime [ms]
     38    Int_t   fLifeTimeFactor;
    4139
    4240protected:
     
    4644    Int_t GetLifeTimeFactor() const { return fLifeTimeFactor; }
    4745    Int_t GetGuardTime() const      { return fGuardTime; }
    48 
    49     virtual void SetZombie();
    5046
    5147public:
     
    6763
    6864    bool IsZombieNode() const { return fIsZombie; }
     65    void SetZombie(bool stopguard=true);
    6966
    7067    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.