src/ca/client: no need to remove const

This commit is contained in:
Michael Davidsaver
2015-08-18 14:33:44 -04:00
parent b6fbea9610
commit 9d00978176
4 changed files with 6 additions and 6 deletions

View File

@@ -92,7 +92,7 @@ epicsTimerNotify::expireStatus repeaterSubscribeTimer::
}
}
void repeaterSubscribeTimer::show ( unsigned /* level */ )
void repeaterSubscribeTimer::show ( unsigned /* level */ ) const
{
epicsGuard < epicsMutex > guard ( this->stateMutex );

View File

@@ -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;

View File

@@ -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 () )
{

View File

@@ -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 {};