fixed sun pro warning
This commit is contained in:
@@ -831,11 +831,11 @@ void cac::writeRequest ( nciu &chan, unsigned type, unsigned nElem, const void *
|
||||
}
|
||||
|
||||
cacChannel::ioid cac::writeNotifyRequest ( nciu &chan, unsigned type, unsigned nElem,
|
||||
const void *pValue, cacWriteNotify ¬ify )
|
||||
const void *pValue, cacWriteNotify ¬ifyIn )
|
||||
{
|
||||
epicsAutoMutex autoMutex ( this->mutex );
|
||||
autoPtrRecycle < netWriteNotifyIO > pIO ( *this, netWriteNotifyIO::factory (
|
||||
this->freeListWriteNotifyIO, chan, notify ) );
|
||||
this->freeListWriteNotifyIO, chan, notifyIn ) );
|
||||
if ( pIO.get() ) {
|
||||
this->ioTable.add ( *pIO );
|
||||
chan.cacPrivateListOfIO::eventq.add ( *pIO );
|
||||
@@ -849,11 +849,11 @@ cacChannel::ioid cac::writeNotifyRequest ( nciu &chan, unsigned type, unsigned n
|
||||
}
|
||||
}
|
||||
|
||||
cacChannel::ioid cac::readNotifyRequest ( nciu &chan, unsigned type, unsigned nElem, cacReadNotify ¬ify )
|
||||
cacChannel::ioid cac::readNotifyRequest ( nciu &chan, unsigned type, unsigned nElem, cacReadNotify ¬ifyIn )
|
||||
{
|
||||
epicsAutoMutex autoMutex ( this->mutex );
|
||||
autoPtrRecycle < netReadNotifyIO > pIO ( *this, netReadNotifyIO::factory (
|
||||
this->freeListReadNotifyIO, chan, notify ) );
|
||||
this->freeListReadNotifyIO, chan, notifyIn ) );
|
||||
if ( pIO.get() ) {
|
||||
this->flushIfRequired ( chan );
|
||||
this->ioTable.add ( *pIO );
|
||||
@@ -1153,11 +1153,11 @@ void cac::recycleSubscription ( netSubscription &io )
|
||||
}
|
||||
|
||||
cacChannel::ioid cac::subscriptionRequest ( nciu &chan, unsigned type,
|
||||
unsigned long nElem, unsigned mask, cacStateNotify ¬ify )
|
||||
unsigned long nElem, unsigned mask, cacStateNotify ¬ifyIn )
|
||||
{
|
||||
epicsAutoMutex autoMutex ( this->mutex );
|
||||
autoPtrRecycle < netSubscription > pIO ( *this, netSubscription::factory (
|
||||
this->freeListSubscription, chan, type, nElem, mask, notify ) );
|
||||
this->freeListSubscription, chan, type, nElem, mask, notifyIn ) );
|
||||
if ( pIO.get() ) {
|
||||
chan.cacPrivateListOfIO::eventq.add ( *pIO );
|
||||
this->ioTable.add ( *pIO );
|
||||
|
||||
@@ -569,7 +569,7 @@ void ca_repeater ()
|
||||
/*
|
||||
* caRepeaterThread ()
|
||||
*/
|
||||
void caRepeaterThread ( void * /* pDummy */ )
|
||||
extern "C" void caRepeaterThread ( void * /* pDummy */ )
|
||||
{
|
||||
taskwdInsert ( epicsThreadGetIdSelf(), NULL, NULL );
|
||||
ca_repeater ();
|
||||
|
||||
@@ -36,7 +36,7 @@ extern "C" void cacRecvThreadUDP ( void *pParam );
|
||||
|
||||
epicsShareFunc void epicsShareAPI caStartRepeaterIfNotInstalled ( unsigned repeaterPort );
|
||||
epicsShareFunc void epicsShareAPI caRepeaterRegistrationMessage ( SOCKET sock, unsigned repeaterPort, unsigned attemptNumber );
|
||||
epicsShareFunc void caRepeaterThread ( void *pDummy );
|
||||
extern "C" epicsShareFunc void caRepeaterThread ( void *pDummy );
|
||||
epicsShareFunc void ca_repeater ( void );
|
||||
|
||||
class udpiiu : public netiiu {
|
||||
|
||||
Reference in New Issue
Block a user