Fixed fixes for HP-UX.

This commit is contained in:
Ralph Lange
2005-11-04 15:54:34 +00:00
parent 6820307b60
commit 892f8581b1
4 changed files with 13 additions and 13 deletions

View File

@@ -749,7 +749,7 @@ bool cac::versionAction ( callbackManager &, tcpiiu &,
bool cac::echoRespAction (
callbackManager & mgr, tcpiiu & iiu,
const epicsTime &, const caHdrLargeArray &, void * )
const epicsTime & /* current */, const caHdrLargeArray &, void * )
{
iiu.probeResponseNotify ( mgr.cbGuard );
return true;
@@ -911,7 +911,7 @@ bool cac::readRespAction ( callbackManager &, tcpiiu &,
}
bool cac::clearChannelRespAction ( callbackManager &, tcpiiu &,
const epicsTime &, const caHdrLargeArray &, void * )
const epicsTime &, const caHdrLargeArray &, void * /* pMsgBody */ )
{
return true; // currently a noop
}
@@ -1033,7 +1033,7 @@ bool cac::exceptionRespAction ( callbackManager & cbMutexIn, tcpiiu & iiu,
bool cac::accessRightsRespAction (
callbackManager & mgr, tcpiiu &, // X aCC 431
const epicsTime &, const caHdrLargeArray & hdr, void * )
const epicsTime &, const caHdrLargeArray & hdr, void * /* pMsgBody */ )
{
epicsGuard < epicsMutex > guard ( this->mutex );
nciu * pChan = this->chanTable.lookup ( hdr.m_cid );
@@ -1050,7 +1050,7 @@ bool cac::accessRightsRespAction (
bool cac::createChannelRespAction (
callbackManager & mgr, tcpiiu & iiu, // X aCC 431
const epicsTime &, const caHdrLargeArray & hdr, void * )
const epicsTime &, const caHdrLargeArray & hdr, void * /* pMsgBody */ )
{
epicsGuard < epicsMutex > guard ( this->mutex );
nciu * pChan = this->chanTable.lookup ( hdr.m_cid );
@@ -1077,7 +1077,7 @@ bool cac::createChannelRespAction (
bool cac::verifyAndDisconnectChan (
callbackManager & mgr, tcpiiu &,
const epicsTime &, const caHdrLargeArray & hdr, void * )
const epicsTime &, const caHdrLargeArray & hdr, void * /* pMsgBody */ )
{
epicsGuard < epicsMutex > guard ( this->mutex );
nciu * pChan = this->chanTable.lookup ( hdr.m_cid );
@@ -1101,7 +1101,7 @@ void cac::disconnectChannel (
}
bool cac::badTCPRespAction ( callbackManager &, tcpiiu & iiu,
const epicsTime &, const caHdrLargeArray & hdr, void * )
const epicsTime &, const caHdrLargeArray & hdr, void * /* pMsgBody */ )
{
epicsGuard < epicsMutex > guard ( this->mutex );
char hostName[64];