no need to save pointer to timer queue now

This commit is contained in:
Jeff Hill
2001-07-12 16:04:04 +00:00
parent 1042e657c8
commit b061bb6eb9
8 changed files with 14 additions and 24 deletions
+2 -2
View File
@@ -20,7 +20,7 @@
//
tcpRecvWatchdog::tcpRecvWatchdog
( tcpiiu &iiuIn, double periodIn, epicsTimerQueue & queueIn ) :
period ( periodIn ), queue ( queueIn ), timer ( queueIn.createTimer () ),
period ( periodIn ), timer ( queueIn.createTimer () ),
iiu ( iiuIn ), responsePending ( false ),
beaconAnomaly ( true )
{
@@ -28,7 +28,7 @@ tcpRecvWatchdog::tcpRecvWatchdog
tcpRecvWatchdog::~tcpRecvWatchdog ()
{
this->queue.destroyTimer ( this->timer );
this->timer.getQueue().destroyTimer ( this->timer );
}
epicsTimerNotify::expireStatus tcpRecvWatchdog::expire ( const epicsTime & /* currentTime */ )