Fixed warnings for HP-UX.

This commit is contained in:
Ralph Lange
2005-11-04 14:37:02 +00:00
parent 22be6c91e1
commit aa84e0a6b0
5 changed files with 5 additions and 5 deletions

View File

@@ -371,7 +371,7 @@ void comQueSend::insertRequestWithPayLoad (
// the above checks verify that the total size
// is lest that 0xffffffff
size = static_cast < ca_uint32_t >
( dbr_size_n ( dataType, nElem ) );
( dbr_size_n ( dataType, nElem ) ); // X aCC 392
payloadSize = CA_MESSAGE_ALIGN ( size );
this->insertRequestHeader ( request, payloadSize,
static_cast <ca_uint16_t> ( dataType ),

View File

@@ -79,7 +79,7 @@ void netSubscription::show (
}
void netSubscription::completion (
epicsGuard < epicsMutex > & guard, cacRecycle & )
epicsGuard < epicsMutex > &, cacRecycle & )
{
errlogPrintf ( "subscription update w/o data ?\n" );
}

View File

@@ -142,7 +142,7 @@ double noopiiu::receiveWatchdogDelay (
}
void noopiiu::uninstallChan (
epicsGuard < epicsMutex > & guard, nciu & chan )
epicsGuard < epicsMutex > &, nciu & )
{
// intentionally does not call default in netiiu
}

View File

@@ -115,7 +115,7 @@ void syncGroupReadNotify::exception (
}
void syncGroupReadNotify::show (
epicsGuard < epicsMutex > & guard, unsigned level ) const
epicsGuard < epicsMutex > &, unsigned level ) const
{
::printf ( "pending sg read op: pVal=%p\n", this->pValue );
if ( level > 0u ) {

View File

@@ -105,7 +105,7 @@ void syncGroupWriteNotify::exception (
}
void syncGroupWriteNotify::show (
epicsGuard < epicsMutex > & guard, unsigned level ) const
epicsGuard < epicsMutex > &, unsigned level ) const
{
::printf ( "pending write sg op\n" );
if ( level > 0u ) {