All HPUX warnings fixed.

This commit is contained in:
Ralph Lange
2002-02-25 15:19:51 +00:00
parent 1f014a6108
commit 90614ef12e
31 changed files with 209 additions and 189 deletions
+2 -1
View File
@@ -112,7 +112,8 @@ caStatus exPV::update(smartConstGDDPointer pValueIn)
//
// exScanTimer::expire ()
//
epicsTimerNotify::expireStatus exPV::expire ( const epicsTime & currentTime )
epicsTimerNotify::expireStatus
exPV::expire ( const epicsTime & /*currentTime*/ ) // X aCC 361
{
this->scan();
if ( this->scanOn ) {
+6 -5
View File
@@ -139,7 +139,7 @@ void exServer::installAliasName(pvInfo &info, const char *pAliasName)
//
// exServer::pvExistTest()
//
pvExistReturn exServer::pvExistTest
pvExistReturn exServer::pvExistTest // X aCC 361
(const casCtx& ctxIn, const char *pPVName)
{
//
@@ -185,7 +185,7 @@ pvExistReturn exServer::pvExistTest
//
// exServer::pvAttach()
//
pvAttachReturn exServer::pvAttach
pvAttachReturn exServer::pvAttach // X aCC 361
(const casCtx &ctx, const char *pName)
{
//
@@ -238,7 +238,8 @@ pvAttachReturn exServer::pvAttach
//
// pvInfo::createPV()
//
exPV *pvInfo::createPV ( exServer &cas, bool preCreateFlag, bool scanOn )
exPV *pvInfo::createPV ( exServer & /*cas*/,
bool preCreateFlag, bool scanOn )
{
if (this->pPV) {
return this->pPV;
@@ -331,7 +332,7 @@ exAsyncExistIO::~exAsyncExistIO()
// exAsyncExistIO::expire()
// (a virtual function that runs when the base timer expires)
//
epicsTimerNotify::expireStatus exAsyncExistIO::expire ( const epicsTime & currentTime )
epicsTimerNotify::expireStatus exAsyncExistIO::expire ( const epicsTime & /*currentTime*/ )
{
//
// post IO completion
@@ -366,7 +367,7 @@ exAsyncCreateIO::~exAsyncCreateIO()
// exAsyncCreateIO::expire()
// (a virtual function that runs when the base timer expires)
//
epicsTimerNotify::expireStatus exAsyncCreateIO::expire ( const epicsTime & currentTime )
epicsTimerNotify::expireStatus exAsyncCreateIO::expire ( const epicsTime & /*currentTime*/ )
{
exPV *pPV;
+2 -1
View File
@@ -110,7 +110,8 @@ private:
// for this breaking out into a seperate class
// from pvInfo)
//
class pvEntry : public stringId, public tsSLNode<pvEntry> {
class pvEntry // X aCC 655
: public stringId, public tsSLNode<pvEntry> {
public:
pvEntry (pvInfo &infoIn, exServer &casIn,
const char *pAliasName) :
+1 -1
View File
@@ -36,7 +36,7 @@ unsigned exVectorPV::maxDimension() const
//
// exVectorPV::maxBound()
//
aitIndex exVectorPV::maxBound (unsigned dimension) const
aitIndex exVectorPV::maxBound (unsigned dimension) const // X aCC 361
{
if (dimension==0u) {
return this->info.getElementCount();