added beacon anomaly count diagnostic

This commit is contained in:
Jeff Hill
2003-02-05 22:08:54 +00:00
parent 0b8f25214f
commit 168c9c5503
7 changed files with 54 additions and 53 deletions

View File

@@ -230,8 +230,9 @@ void ca_client_context::fdWasDestroyed ( int fd )
void ca_client_context::show ( unsigned level ) const
{
::printf ( "ca_client_context at %p\n",
static_cast <const void *> ( this ) );
::printf ( "ca_client_context at %p pndRecvCnt=%u ioSeqNo=%u\n",
static_cast <const void *> ( this ),
this->pndRecvCnt, this->ioSeqNo );
if ( level > 0u ) {
this->mutex.show ( level - 1u );
this->clientCtx.show ( level - 1u );
@@ -243,7 +244,6 @@ void ca_client_context::show ( unsigned level ) const
this->ioSeqNo );
::printf ( "IO done event:\n");
this->ioDone.show ( level - 1u );
}
}