Fixed warnings for HP-UX.

This commit is contained in:
Ralph Lange
2005-11-04 15:28:12 +00:00
parent 879d1a95bb
commit 6820307b60
4 changed files with 5 additions and 4 deletions

View File

@@ -170,7 +170,7 @@ epicsTimerNotify::expireStatus casStreamEvWakeup::expire ( const epicsTime & /*
//
// casStreamEvWakeup::start()
//
void casStreamEvWakeup::start( casStreamOS &os )
void casStreamEvWakeup::start( casStreamOS & )
{
// care is needed here because this is called
// asynchronously by postEvent

View File

@@ -293,7 +293,8 @@ void casDGIntfIO::xSetNonBlocking()
if ( this->bcastRecvSock != INVALID_SOCKET ) {
yes = true;
int status = socket_ioctl ( this->bcastRecvSock, FIONBIO, &yes ); // X aCC 392
int status = socket_ioctl ( this->bcastRecvSock, // X aCC 392
FIONBIO, &yes );
if ( status < 0 ) {
char sockErrBuf[64];
epicsSocketConvertErrnoToString ( sockErrBuf, sizeof ( sockErrBuf ) );

View File

@@ -21,7 +21,7 @@
extern "C" void epicsMaxThreads(void);
int main(int argc,char *argv[])
int main(int /*argc*/, char * /*argv[]*/ )
{
epicsMaxThreads();
printf("main terminating\n");

View File

@@ -21,7 +21,7 @@
extern "C" void epicsOkToBlockTest(void);
int main(int argc,char *argv[])
int main(int /*argc*/, char * /*argv[]*/ )
{
epicsOkToBlockTest();
printf("main terminating\n");