better member func name

This commit is contained in:
Jeff Hill
2001-03-07 16:11:08 +00:00
parent b4e3bed661
commit 2276e9f476
3 changed files with 6 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ unsigned comQueRecv::occupiedBytes () const
// copyIn ( comBuf & bufIn )
nBytes = this->bufs.first ()->occupiedBytes ();
nBytes += this->bufs.last ()->occupiedBytes ();
nBytes += ( count - 2u ) * comBuf::maxBytes ();
nBytes += ( count - 2u ) * comBuf::capacityBytes ();
}
return nBytes;

View File

@@ -37,7 +37,7 @@
//
// Implementation:
// 1) When queuing a complete message, first test to see if a flush is
// required. If it is a receive thread schedual the flush with the
// required. If it is a receive thread scheduals the flush with the
// send thread, and otherwise directly execute the system call. The
// send thread must run at a higher priority than the receive thread
// if we are to minimize memory consumption.
@@ -61,6 +61,7 @@
#include "comQueSend_IL.h"
tsFreeList < class comBuf, 0x20 > comBuf::freeList;
epicsMutex comBuf::freeListMutex;
comQueSend::comQueSend ( wireSendAdapter & wireIn ) :
wire ( wireIn ), nBytesPending ( 0u )
@@ -102,7 +103,7 @@ int comQueSend::reserveSpace ( unsigned msgSize )
while ( bytesReserved < msgSize ) {
if ( reservoir.addOneBuffer () ) {
bytesReserved += comBuf::maxBytes ();
bytesReserved += comBuf::capacityBytes ();
}
else {
return ECA_ALLOCMEM;

View File

@@ -44,7 +44,7 @@ inline bool bufferReservoir::addOneBuffer ()
inline unsigned bufferReservoir::nBytes ()
{
return ( this->reservedBufs.count () * comBuf::maxBytes () );
return ( this->reservedBufs.count () * comBuf::capacityBytes () );
}
inline void bufferReservoir::drain ()
@@ -181,7 +181,7 @@ inline unsigned comQueSend::occupiedBytes () const
inline bool comQueSend::flushThreshold ( unsigned nBytesThisMsg ) const
{
return ( this->nBytesPending + nBytesThisMsg > 4 * comBuf::maxBytes () );
return ( this->nBytesPending + nBytesThisMsg > 4 * comBuf::capacityBytes () );
}
inline comBuf * comQueSend::popNextComBufToSend ()