51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
|
|
/*
|
|
* $Id$
|
|
*
|
|
*
|
|
* L O S A L A M O S
|
|
* Los Alamos National Laboratory
|
|
* Los Alamos, New Mexico 87545
|
|
*
|
|
* Copyright, 1986, The Regents of the University of California.
|
|
*
|
|
*
|
|
* Author Jeffrey O. Hill
|
|
* johill@lanl.gov
|
|
*/
|
|
|
|
#define epicsAssertAuthor "Jeff Hill johill@lanl.gov"
|
|
|
|
#include "iocinf.h"
|
|
#include "comBuf.h"
|
|
|
|
#if defined ( _MSC_VER )
|
|
# pragma warning ( push )
|
|
# pragma warning ( disable: 4660 )
|
|
#endif
|
|
|
|
template class tsFreeList < class comBuf, 0x20 >;
|
|
|
|
#if defined ( _MSC_VER )
|
|
# pragma warning ( pop )
|
|
#endif
|
|
|
|
tsFreeList < class comBuf, 0x20 > comBuf::freeList;
|
|
epicsMutex comBuf::freeListMutex;
|
|
|
|
bool comBuf::flushToWire ( wireSendAdapter &wire )
|
|
{
|
|
unsigned occupied = this->occupiedBytes ();
|
|
while ( occupied ) {
|
|
unsigned nBytes = wire.sendBytes (
|
|
&this->buf[this->nextReadIndex], occupied );
|
|
if ( nBytes == 0u ) {
|
|
return false;
|
|
}
|
|
this->nextReadIndex += nBytes;
|
|
occupied = this->occupiedBytes ();
|
|
}
|
|
return true;
|
|
}
|
|
|