adapt to interface change

This commit is contained in:
Jeff Hill
2002-05-08 23:24:34 +00:00
parent 1078a86e36
commit 524a987774
2 changed files with 7 additions and 18 deletions

View File

@@ -953,16 +953,6 @@ void udpiiu::removeAllChannels ( epicsGuard < callbackMutex > & )
}
}
void udpiiu::pendioTimeoutNotify ()
{
epicsGuard < udpMutex > guard ( this->mutex );
tsDLIterBD < nciu > chan = this->channelList.firstIter ();
while ( chan.valid () ) {
chan->connectTimeoutNotify ();
chan++;
}
}
bool udpiiu::searchMsg ( unsigned short retrySeqNumber, unsigned & retryNoForThisChannel )
{
bool success;
@@ -1004,11 +994,12 @@ int udpiiu::printf ( const char *pformat, ... )
return status;
}
void udpiiu::uninstallChannel ( epicsGuard < callbackMutex > &,
epicsGuard < cacMutex > &, nciu & chan )
class tcpiiu * udpiiu::uninstallChanAndReturnDestroyPtr (
epicsGuard < cacMutex > &, nciu & chan )
{
epicsGuard < udpMutex > guard ( this->mutex );
this->channelList.remove ( chan );
return 0;
}
void udpiiu::hostName ( char *pBuf, unsigned bufLength ) const
@@ -1078,9 +1069,9 @@ void udpiiu::flushRequestIfAboveEarlyThreshold ( epicsGuard < cacMutex > & guard
}
void udpiiu::blockUntilSendBacklogIsReasonable
( epicsGuard < callbackMutex > * pCBGuard, epicsGuard < cacMutex > & guard )
( cacNotify & notify, epicsGuard < cacMutex > & guard )
{
netiiu::blockUntilSendBacklogIsReasonable ( pCBGuard, guard );
netiiu::blockUntilSendBacklogIsReasonable ( notify, guard );
}
void udpiiu::requestRecvProcessPostponedFlush ()

View File

@@ -87,11 +87,9 @@ public:
void resetSearchTimerPeriod ( double delay );
void beaconAnomalyNotify ();
void removeAllChannels ( epicsGuard < callbackMutex > & cbGuard );
void pendioTimeoutNotify ();
int printf ( const char *pformat, ... );
unsigned channelCount ();
void uninstallChannel ( epicsGuard < callbackMutex > &,
epicsGuard < cacMutex > &, nciu & );
class tcpiiu * uninstallChanAndReturnDestroyPtr ( epicsGuard < cacMutex > &, nciu & );
bool pushDatagramMsg ( const caHdr &hdr, const void *pExt, ca_uint16_t extsize);
// exceptions
@@ -164,7 +162,7 @@ private:
bool flushBlockThreshold ( epicsGuard < cacMutex > & ) const;
void flushRequestIfAboveEarlyThreshold ( epicsGuard < cacMutex > & );
void blockUntilSendBacklogIsReasonable
( epicsGuard < callbackMutex > *, epicsGuard < cacMutex > & );
( cacNotify &, epicsGuard < cacMutex > & );
void requestRecvProcessPostponedFlush ();
osiSockAddr getNetworkAddress () const;