CleanupWhitespace
removed spaces at end of line replaced tabs with spaces
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
#include "nciu.h"
|
||||
#include "cac.h"
|
||||
|
||||
netWriteNotifyIO::netWriteNotifyIO (
|
||||
netWriteNotifyIO::netWriteNotifyIO (
|
||||
privateInterfaceForIO & ioComplIntf, cacWriteNotify & notifyIn ) :
|
||||
notify ( notifyIn ), privateChanForIO ( ioComplIntf )
|
||||
{
|
||||
@@ -40,19 +40,19 @@ netWriteNotifyIO::~netWriteNotifyIO ()
|
||||
|
||||
void netWriteNotifyIO::show ( unsigned /* level */ ) const
|
||||
{
|
||||
::printf ( "read write notify IO at %p\n",
|
||||
::printf ( "read write notify IO at %p\n",
|
||||
static_cast < const void * > ( this ) );
|
||||
}
|
||||
|
||||
void netWriteNotifyIO::show (
|
||||
epicsGuard < epicsMutex > &,
|
||||
void netWriteNotifyIO::show (
|
||||
epicsGuard < epicsMutex > &,
|
||||
unsigned level ) const
|
||||
{
|
||||
this->show ( level );
|
||||
}
|
||||
|
||||
void netWriteNotifyIO::destroy (
|
||||
epicsGuard < epicsMutex > & guard,
|
||||
void netWriteNotifyIO::destroy (
|
||||
epicsGuard < epicsMutex > & guard,
|
||||
cacRecycle & recycle )
|
||||
{
|
||||
this->~netWriteNotifyIO ();
|
||||
@@ -69,10 +69,10 @@ void netWriteNotifyIO::completion (
|
||||
recycle.recycleWriteNotifyIO ( guard, *this );
|
||||
}
|
||||
|
||||
void netWriteNotifyIO::completion (
|
||||
epicsGuard < epicsMutex > & guard,
|
||||
void netWriteNotifyIO::completion (
|
||||
epicsGuard < epicsMutex > & guard,
|
||||
cacRecycle & recycle,
|
||||
unsigned /* type */, arrayElementCount /* count */,
|
||||
unsigned /* type */, arrayElementCount /* count */,
|
||||
const void * /* pData */ )
|
||||
{
|
||||
//this->chan.getClient().printf ( "Write response with data ?\n" );
|
||||
@@ -81,26 +81,26 @@ void netWriteNotifyIO::completion (
|
||||
recycle.recycleWriteNotifyIO ( guard, *this );
|
||||
}
|
||||
|
||||
void netWriteNotifyIO::exception (
|
||||
void netWriteNotifyIO::exception (
|
||||
epicsGuard < epicsMutex > & guard,
|
||||
cacRecycle & recycle,
|
||||
int status, const char * pContext )
|
||||
{
|
||||
this->privateChanForIO.ioCompletionNotify ( guard, *this );
|
||||
this->notify.exception (
|
||||
this->notify.exception (
|
||||
guard, status, pContext, UINT_MAX, 0u );
|
||||
this->~netWriteNotifyIO ();
|
||||
recycle.recycleWriteNotifyIO ( guard, *this );
|
||||
}
|
||||
|
||||
void netWriteNotifyIO::exception (
|
||||
epicsGuard < epicsMutex > & guard,
|
||||
void netWriteNotifyIO::exception (
|
||||
epicsGuard < epicsMutex > & guard,
|
||||
cacRecycle & recycle,
|
||||
int status, const char *pContext,
|
||||
int status, const char *pContext,
|
||||
unsigned type, arrayElementCount count )
|
||||
{
|
||||
this->privateChanForIO.ioCompletionNotify ( guard, *this );
|
||||
this->notify.exception (
|
||||
this->notify.exception (
|
||||
guard, status, pContext, type, count );
|
||||
this->~netWriteNotifyIO ();
|
||||
recycle.recycleWriteNotifyIO ( guard, *this );
|
||||
|
||||
Reference in New Issue
Block a user