fixed sun pro warnings

This commit is contained in:
Jeff Hill
2001-10-25 21:50:10 +00:00
parent af9443fe1d
commit bd7d1f4090
3 changed files with 6 additions and 6 deletions

View File

@@ -56,13 +56,13 @@ inline void casChannelI::unlock() const
//
// casChannelI::postEvent()
//
inline void casChannelI::postEvent (const casEventMask &select, const smartConstGDDPointer &pEvent)
inline void casChannelI::postEvent (const casEventMask &select, const gdd &event)
{
this->lock();
tsDLIterBD<casMonitor> iter = this->monitorList.firstIter ();
while ( iter.valid () ) {
iter->post (select, pEvent);
iter->post (select, event);
++iter;
}

View File

@@ -326,7 +326,7 @@ public:
void installAsyncIO (casAsyncIOI &);
void removeAsyncIO (casAsyncIOI &);
void postEvent (const casEventMask &select, const smartConstGDDPointer &pEvent);
void postEvent (const casEventMask &select, const gdd &event);
epicsShareFunc virtual casResType resourceType () const;
@@ -437,7 +437,7 @@ public:
//
void deleteSignal ();
void postEvent (const casEventMask &select, const smartConstGDDPointer &pEvent);
void postEvent (const casEventMask &select, const gdd &event);
caServer *getExtServer () const;

View File

@@ -129,7 +129,7 @@ inline caStatus casPVI::bestDBRType (unsigned &dbrType)
//
// casPVI::postEvent()
//
inline void casPVI::postEvent (const casEventMask &select, const smartConstGDDPointer &pEvent)
inline void casPVI::postEvent (const casEventMask &select, const gdd &event)
{
if (this->nMonAttached==0u) {
return;
@@ -138,7 +138,7 @@ inline void casPVI::postEvent (const casEventMask &select, const smartConstGDDPo
this->lock();
tsDLIterBD<casPVListChan> iter = this->chanList.firstIter ();
while ( iter.valid () ) {
iter->postEvent ( select, pEvent );
iter->postEvent ( select, event );
++iter;
}
this->unlock();