updated to match service API changes
This commit is contained in:
@@ -43,7 +43,7 @@ dbChannelIO::dbChannelIO ( cacChannelNotify ¬ify,
|
||||
|
||||
void dbChannelIO::initiateConnect ()
|
||||
{
|
||||
this->notify ().connectNotify ( *this );
|
||||
this->notify ().connectNotify ();
|
||||
}
|
||||
|
||||
dbChannelIO::~dbChannelIO ()
|
||||
@@ -52,10 +52,10 @@ dbChannelIO::~dbChannelIO ()
|
||||
}
|
||||
|
||||
cacChannel::ioStatus dbChannelIO::read ( unsigned type,
|
||||
unsigned long count, cacDataNotify ¬ify, ioid * )
|
||||
unsigned long count, cacReadNotify ¬ify, ioid * )
|
||||
{
|
||||
this->serviceIO.callReadNotify ( this->addr,
|
||||
type, count, 0, notify );
|
||||
type, count, notify );
|
||||
return iosSynch;
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ void dbChannelIO::write ( unsigned type, unsigned long count, const void *pValue
|
||||
}
|
||||
|
||||
cacChannel::ioStatus dbChannelIO::write ( unsigned type, unsigned long count,
|
||||
const void *pValue, cacNotify ¬ify, ioid *pId )
|
||||
const void *pValue, cacWriteNotify ¬ify, ioid *pId )
|
||||
{
|
||||
if ( count > LONG_MAX ) {
|
||||
throw outOfBounds();
|
||||
@@ -89,7 +89,7 @@ void dbChannelIO::putNotifyCompletion ( dbPutNotifyBlocker &blocker )
|
||||
}
|
||||
|
||||
void dbChannelIO::subscribe ( unsigned type, unsigned long count,
|
||||
unsigned mask, cacDataNotify ¬ify, ioid *pId )
|
||||
unsigned mask, cacStateNotify ¬ify, ioid *pId )
|
||||
{
|
||||
if ( type > INT_MAX ) {
|
||||
throw cacChannel::badType();
|
||||
|
||||
Reference in New Issue
Block a user