fixed sun pro warnings

This commit is contained in:
Jeff Hill
2001-04-17 00:44:59 +00:00
parent 76560ce7c3
commit a8a86993e3
11 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -143,7 +143,7 @@ public:
virtual ~dbServiceIO ();
cacChannel *createChannel ( const char *pName, cacChannelNotify & );
void callReadNotify ( struct dbAddr &addr, unsigned type, unsigned long count,
const struct db_field_log *pfl, cacChannel &, cacDataNotify &notify );
const struct db_field_log *pfl, cacDataNotify &notify );
dbEventSubscription subscribe ( struct dbAddr &addr, dbChannelIO &chan,
dbSubscriptionIO &subscr, unsigned mask, cacChannel::ioid * );
void initiatePutNotify ( dbChannelIO &, struct dbAddr &, unsigned type,
+1 -1
View File
@@ -55,7 +55,7 @@ cacChannel::ioStatus dbChannelIO::read ( unsigned type,
unsigned long count, cacDataNotify &notify, ioid * )
{
this->serviceIO.callReadNotify ( this->addr,
type, count, 0, *this, notify );
type, count, 0, notify );
return iosSynch;
}
+1 -1
View File
@@ -57,5 +57,5 @@ inline short dbChannelIO::nativeType () const
inline void dbChannelIO::callReadNotify ( unsigned type, unsigned long count,
const struct db_field_log *pfl, cacDataNotify &notify )
{
this->serviceIO.callReadNotify ( this->addr, type, count, pfl, *this, notify );
this->serviceIO.callReadNotify ( this->addr, type, count, pfl, notify );
}
+1 -1
View File
@@ -84,7 +84,7 @@ cacChannel *dbServiceIO::createChannel (
void dbServiceIO::callReadNotify ( struct dbAddr &addr,
unsigned type, unsigned long count,
const struct db_field_log *pfl,
cacChannel &chan, cacDataNotify &notify )
cacDataNotify &notify )
{
unsigned long size = dbr_size_n ( type, count );