removed unused argument

This commit is contained in:
Jeff Hill
2003-02-24 16:02:50 +00:00
parent 7624b0559b
commit b73101f5e5
3 changed files with 4 additions and 6 deletions

View File

@@ -65,7 +65,7 @@ public:
epicsShareFunc double period () const;
epicsShareFunc epicsTime updateTime () const;
epicsShareFunc void show ( unsigned level) const;
epicsShareFunc void registerIIU ( tcpiiu &, const epicsTime & );
epicsShareFunc void registerIIU ( tcpiiu & );
epicsShareFunc void unregisterIIU ( tcpiiu & );
epicsShareFunc void * operator new ( size_t size, bheMemoryManager & );
#ifdef CXX_PLACEMENT_DELETE

View File

@@ -511,8 +511,7 @@ void cac::repeaterSubscribeConfirmNotify ()
bool cac::lookupChannelAndTransferToTCP (
epicsGuard < callbackMutex > & cbGuard, unsigned cid, unsigned sid,
ca_uint16_t typeCode, arrayElementCount count,
unsigned minorVersionNumber, const osiSockAddr & addr,
const epicsTime & currentTime )
unsigned minorVersionNumber, const osiSockAddr & addr )
{
bool newIIU = false;
tcpiiu * piiu = 0;
@@ -575,7 +574,7 @@ bool cac::lookupChannelAndTransferToTCP (
}
this->serverTable.add ( *pnewiiu );
this->serverList.add ( *pnewiiu );
pBHE->registerIIU ( *pnewiiu, currentTime );
pBHE->registerIIU ( *pnewiiu );
piiu = pnewiiu.release ();
newIIU = true;
}

View File

@@ -134,8 +134,7 @@ public:
epicsGuard < callbackMutex > &,
unsigned cid, unsigned sid,
ca_uint16_t typeCode, arrayElementCount count,
unsigned minorVersionNumber, const osiSockAddr &,
const epicsTime & currentTime );
unsigned minorVersionNumber, const osiSockAddr & );
void destroyChannel ( nciu & );
cacChannel & createChannel ( const char *name_str,