removed function parameter

This commit is contained in:
Jeff Hill
2001-08-13 21:07:44 +00:00
parent f77bdc3b54
commit 46bf66f198
2 changed files with 4 additions and 7 deletions

View File

@@ -756,8 +756,7 @@ bool cac::lookupChannelAndTransferToTCP ( unsigned cid, unsigned sid,
if ( ! piiu ) {
try {
piiu = new tcpiiu ( *this, this->connTMO, *this->pTimerQueue,
addr, minorVersionNumber, *pBHE, this->ipToAEngine,
this->enablePreemptiveCallback );
addr, minorVersionNumber, *pBHE, this->ipToAEngine );
if ( ! piiu ) {
return true;
}
@@ -1584,7 +1583,7 @@ void cac::vSignal ( int ca_status, const char *pfilenm,
ca_message ( ca_status ) );
if ( pFormat ) {
this->printf ( "Context: \"" );
this->printf ( " Context: \"" );
this->vPrintf ( pFormat, args );
this->printf ( "\"\n" );
}

View File

@@ -83,7 +83,7 @@ private:
this->wire.forcedShutdown ();
throw std::bad_alloc ();
}
unsigned nNew = pComBuf->copyIn ( &pVal[nCopied], nElem - nCopied );
unsigned nNew = pComBuf->copyIn ( &pVal[nCopied], nElem - nCopied );
nCopied += nNew;
this->nBytesPending += nNew * sizeof ( T );
this->bufs.add ( *pComBuf );
@@ -215,8 +215,7 @@ public:
tcpiiu ( cac &cac, double connectionTimeout,
epicsTimerQueue &timerQueue, const osiSockAddr &addrIn,
unsigned minorVersion, class bhe &bhe,
ipAddrToAsciiEngine & engineIn,
bool preemptiveCallbackEnable );
ipAddrToAsciiEngine & engineIn );
~tcpiiu ();
void connect ();
void destroy ();
@@ -276,7 +275,6 @@ private:
bool sockCloseCompleted;
bool earlyFlush;
bool recvProcessPostponedFlush;
bool preemptiveCallbackEnable;
void processIncoming ();