From 4f670ec9fe81b3cc499388a3ec15c626114736b3 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 8 May 2002 23:26:10 +0000 Subject: [PATCH] now stores a cac ref --- src/ca/tcpRecvWatchdog.h | 5 +++-- src/ca/tcpSendWatchdog.h | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/ca/tcpRecvWatchdog.h b/src/ca/tcpRecvWatchdog.h index 289457674..feba2cc59 100644 --- a/src/ca/tcpRecvWatchdog.h +++ b/src/ca/tcpRecvWatchdog.h @@ -24,7 +24,7 @@ class tcpiiu; class tcpRecvWatchdog : private epicsTimerNotify { public: - tcpRecvWatchdog ( tcpiiu &, double periodIn, epicsTimerQueue & ); + tcpRecvWatchdog ( cac &, tcpiiu &, double periodIn, epicsTimerQueue & ); virtual ~tcpRecvWatchdog (); void rescheduleRecvTimer (); void sendBacklogProgressNotify (); @@ -37,7 +37,8 @@ public: private: const double period; epicsTimer & timer; - tcpiiu &iiu; + tcpiiu & iiu; + cac & cacRef; bool responsePending; bool beaconAnomaly; expireStatus expire ( const epicsTime & currentTime ); diff --git a/src/ca/tcpSendWatchdog.h b/src/ca/tcpSendWatchdog.h index b07116973..4e1812d5a 100644 --- a/src/ca/tcpSendWatchdog.h +++ b/src/ca/tcpSendWatchdog.h @@ -22,13 +22,14 @@ class tcpSendWatchdog : private epicsTimerNotify { public: - tcpSendWatchdog ( tcpiiu &, double periodIn, epicsTimerQueue & queueIn ); + tcpSendWatchdog ( cac &, tcpiiu &, double periodIn, epicsTimerQueue & queueIn ); virtual ~tcpSendWatchdog (); void start (); void cancel (); private: const double period; epicsTimer & timer; + cac & cacRef; tcpiiu & iiu; expireStatus expire ( const epicsTime & currentTime ); tcpSendWatchdog ( const tcpSendWatchdog & );