src/ca/client: no need to remove const
This commit is contained in:
@@ -92,7 +92,7 @@ epicsTimerNotify::expireStatus repeaterSubscribeTimer::
|
||||
}
|
||||
}
|
||||
|
||||
void repeaterSubscribeTimer::show ( unsigned /* level */ )
|
||||
void repeaterSubscribeTimer::show ( unsigned /* level */ ) const
|
||||
{
|
||||
epicsGuard < epicsMutex > guard ( this->stateMutex );
|
||||
|
||||
|
||||
@@ -64,13 +64,13 @@ public:
|
||||
epicsGuard < epicsMutex > & cbGuard,
|
||||
epicsGuard < epicsMutex > & guard );
|
||||
void confirmNotify ();
|
||||
void show ( unsigned level );
|
||||
void show ( unsigned level ) const;
|
||||
private:
|
||||
epicsTimer & timer;
|
||||
repeaterTimerNotify & iiu;
|
||||
epicsMutex & cbMutex;
|
||||
cacContextNotify & ctxNotify;
|
||||
epicsMutex stateMutex;
|
||||
mutable epicsMutex stateMutex;
|
||||
unsigned attempts;
|
||||
bool registered;
|
||||
bool once;
|
||||
|
||||
@@ -1084,7 +1084,7 @@ bool udpiiu :: datagramFlush (
|
||||
return true;
|
||||
}
|
||||
|
||||
void udpiiu :: show ( unsigned level )
|
||||
void udpiiu :: show ( unsigned level ) const
|
||||
{
|
||||
epicsGuard < epicsMutex > guard ( this->cacMutex );
|
||||
|
||||
@@ -1095,7 +1095,7 @@ void udpiiu :: show ( unsigned level )
|
||||
::printf ( "Search Destination List with %u items\n",
|
||||
_searchDestList.count () );
|
||||
if ( level > 2u ) {
|
||||
tsDLIter < SearchDest > iter (
|
||||
tsDLIterConst < SearchDest > iter (
|
||||
_searchDestList.firstIter () );
|
||||
while ( iter.valid () )
|
||||
{
|
||||
|
||||
@@ -108,7 +108,7 @@ public:
|
||||
epicsGuard < epicsMutex > & guard );
|
||||
void shutdown ( epicsGuard < epicsMutex > & cbGuard,
|
||||
epicsGuard < epicsMutex > & guard );
|
||||
void show ( unsigned level );
|
||||
void show ( unsigned level ) const;
|
||||
|
||||
// exceptions
|
||||
class noSocket {};
|
||||
|
||||
Reference in New Issue
Block a user