fixed gnu compiler errors
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
* between the 1st and 2nd beacons)
|
||||
*/
|
||||
bhe::bhe ( const epicsTime & initialTimeStamp,
|
||||
unsigned initialBeaconNumber, const inetAddrID & addr ) :
|
||||
unsigned initialBeaconNumber, const inetAddrID & addr ) throw () :
|
||||
inetAddrID ( addr ), timeStamp ( initialTimeStamp ), averagePeriod ( - DBL_MAX ),
|
||||
lastBeaconNumber ( initialBeaconNumber )
|
||||
{
|
||||
|
||||
@@ -139,7 +139,7 @@ void tcpSendThread::run ()
|
||||
}
|
||||
|
||||
unsigned tcpiiu::sendBytes ( const void *pBuf,
|
||||
unsigned nBytesInBuf )
|
||||
unsigned nBytesInBuf ) throw ()
|
||||
{
|
||||
int status;
|
||||
unsigned nBytes = 0u;
|
||||
@@ -202,7 +202,7 @@ unsigned tcpiiu::sendBytes ( const void *pBuf,
|
||||
return nBytes;
|
||||
}
|
||||
|
||||
unsigned tcpiiu::recvBytes ( void * pBuf, unsigned nBytesInBuf )
|
||||
unsigned tcpiiu::recvBytes ( void * pBuf, unsigned nBytesInBuf ) throw ()
|
||||
{
|
||||
if ( this->state != iiucs_connected &&
|
||||
this->state != iiucs_clean_shutdown ) {
|
||||
|
||||
@@ -170,8 +170,8 @@ private:
|
||||
bool recvProcessPostponedFlush;
|
||||
|
||||
bool processIncoming ( epicsGuard < callbackMutex > & );
|
||||
unsigned sendBytes ( const void *pBuf, unsigned nBytesInBuf );
|
||||
unsigned recvBytes ( void *pBuf, unsigned nBytesInBuf );
|
||||
unsigned sendBytes ( const void *pBuf, unsigned nBytesInBuf ) throw ();
|
||||
unsigned recvBytes ( void *pBuf, unsigned nBytesInBuf ) throw ();
|
||||
void connect ();
|
||||
const char * pHostName () const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user