better diagnostics and disconnect claims pending channels

in tcpiiu::~tcpiiu
This commit is contained in:
Jeff Hill
2000-09-06 00:33:14 +00:00
parent 6387924a87
commit 87a8230100
25 changed files with 427 additions and 168 deletions

View File

@@ -70,3 +70,14 @@ void netReadCopyIO::exceptionNotify ( int status,
"%s type=%d count=%ld\n",
pContextIn, typeIn, countIn);
}
void netReadCopyIO::show ( unsigned level ) const
{
printf ( "read copy IO at %p, type %s, element count %u\n",
this, this->type, this->count );
if ( level > 0u ) {
printf ( "\tsequence number %u, user's storage %p\n",
this->seqNumber, this->pValue );
this->baseNMIU::show ( level - 1u );
}
}