From cac8ac979b356bbe7a2d32a23e5f82479be734d8 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 9 May 2002 00:29:46 +0000 Subject: [PATCH] adapt to new interface --- src/ca/limboiiu.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ca/limboiiu.cpp b/src/ca/limboiiu.cpp index cbf4c8fe0..8ac503f36 100644 --- a/src/ca/limboiiu.cpp +++ b/src/ca/limboiiu.cpp @@ -93,9 +93,9 @@ void limboiiu::flushRequestIfAboveEarlyThreshold ( epicsGuard < cacMutex > & gua } void limboiiu::blockUntilSendBacklogIsReasonable - ( epicsGuard < callbackMutex > * pCBGuard, epicsGuard < cacMutex > & guard ) + ( cacNotify & notify, epicsGuard < cacMutex > & guard ) { - netiiu::blockUntilSendBacklogIsReasonable ( pCBGuard, guard ); + netiiu::blockUntilSendBacklogIsReasonable ( notify, guard ); } void limboiiu::requestRecvProcessPostponedFlush () @@ -108,10 +108,10 @@ osiSockAddr limboiiu::getNetworkAddress () const return netiiu::getNetworkAddress (); } -void limboiiu::uninstallChannel ( epicsGuard < callbackMutex > & cbGuard, - epicsGuard < cacMutex > & guard, nciu & chan ) +class tcpiiu * limboiiu::uninstallChanAndReturnDestroyPtr + ( epicsGuard < cacMutex > & guard, nciu & chan ) { - netiiu::uninstallChannel ( cbGuard, guard, chan ); + return netiiu::uninstallChanAndReturnDestroyPtr ( guard, chan ); }