fixed gnu warnings

This commit is contained in:
Jeff Hill
2004-01-15 02:51:35 +00:00
parent 60a797048a
commit a2531d6bc9
4 changed files with 8 additions and 4 deletions

View File

@@ -142,6 +142,9 @@ public:
epicsGuard < epicsMutex > &, epicsGuard < epicsMutex > & );
bool connected ( epicsGuard < epicsMutex > & ) const;
protected:
~nciu ();
private:
tsDLList < class baseNMIU > eventq;
caAccessRights accessRightState;
@@ -154,7 +157,6 @@ private:
unsigned short nameLength; // channel name length
ca_uint16_t typeCode;
ca_uint8_t priority;
~nciu ();
virtual void destroy (
epicsGuard < epicsMutex > & callbackControlGuard,
epicsGuard < epicsMutex > & mutualExclusionGuard );

View File

@@ -105,6 +105,8 @@ public:
tsFreeList < struct oldChannelNotify, 1024, epicsMutexNOOP > & );
epicsPlacementDeleteOperator (( void * ,
tsFreeList < struct oldChannelNotify, 1024, epicsMutexNOOP > & ))
protected:
~oldChannelNotify ();
private:
ca_client_context & cacCtx;
cacChannel & io;
@@ -114,7 +116,6 @@ private:
unsigned ioSeqNo;
bool currentlyConnected;
bool prevConnected;
~oldChannelNotify ();
void connectNotify ( epicsGuard < epicsMutex > & );
void disconnectNotify ( epicsGuard < epicsMutex > & );
void serviceShutdownNotify ();

View File

@@ -43,7 +43,7 @@
dbChannelIO::dbChannelIO (
epicsMutex & mutexIn, cacChannelNotify & notify,
const dbAddr & addrIn, dbContext & serviceIO ) :
mutex ( mutexIn ), cacChannel ( notify ), serviceIO ( serviceIO ),
cacChannel ( notify ), mutex ( mutexIn ), serviceIO ( serviceIO ),
addr ( addrIn )
{
}

View File

@@ -60,6 +60,8 @@ public:
tsFreeList < dbChannelIO, 256, epicsMutexNOOP > & );
epicsPlacementDeleteOperator (( void *,
tsFreeList < dbChannelIO, 256, epicsMutexNOOP > & ))
protected:
~dbChannelIO ();
private:
epicsMutex & mutex;
dbContext & serviceIO;
@@ -90,7 +92,6 @@ private:
dbChannelIO & operator = ( const dbChannelIO & );
void * operator new ( size_t size );
void operator delete ( void * );
~dbChannelIO ();
};