adapt to interface changes

This commit is contained in:
Jeff Hill
2001-03-07 16:36:41 +00:00
parent 9e2297bd78
commit baffcb0110

View File

@@ -34,6 +34,7 @@
#define S_db_Pending (M_dbAccess|37)
tsFreeList <dbPutNotifyIO> dbPutNotifyIO::freeList;
epicsMutex dbPutNotifyIO::freeListMutex;
dbPutNotifyIO::dbPutNotifyIO ( cacNotify &notifyIn, dbPutNotifyBlocker &blockerIn ) :
cacNotifyIO ( notifyIn ), blocker ( blockerIn )
@@ -51,6 +52,12 @@ dbPutNotifyIO::~dbPutNotifyIO ()
this->blocker.putNotifyDestroyNotify ();
}
void dbPutNotifyIO::cancel ()
{
delete this;
}
cacChannelIO & dbPutNotifyIO::channelIO () const
{
return this->blocker.channel ();
@@ -108,5 +115,12 @@ void dbPutNotifyIO::completion ()
}
}
void dbPutNotifyIO::show ( unsigned level ) const
{
// !! when there is a show routine for the putNotify
// !! structure we would call it here
this->blocker.show ( level );
}