adapt to new timer API

This commit is contained in:
Jeff Hill
2001-07-11 23:31:45 +00:00
parent a16db0ee59
commit e5b28e846b
17 changed files with 56 additions and 38 deletions
+2 -2
View File
@@ -20,7 +20,7 @@
//
tcpRecvWatchdog::tcpRecvWatchdog
( tcpiiu &iiuIn, double periodIn, epicsTimerQueue & queueIn ) :
period ( periodIn ), timer ( queueIn.createTimer () ),
period ( periodIn ), queue ( queueIn ), timer ( queueIn.createTimer () ),
iiu ( iiuIn ), responsePending ( false ),
beaconAnomaly ( true )
{
@@ -28,7 +28,7 @@ tcpRecvWatchdog::tcpRecvWatchdog
tcpRecvWatchdog::~tcpRecvWatchdog ()
{
delete & this->timer;
this->queue.destroyTimer ( this->timer );
}
epicsTimerNotify::expireStatus tcpRecvWatchdog::expire ( const epicsTime & /* currentTime */ )