fixed sun pro warnings
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user