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

@@ -48,3 +48,16 @@ cacLocalChannelIO * cacServiceList::createChannelIO (const char *pName, cacChann
return pChanIO;
}
void cacServiceList::show ( unsigned level ) const
{
cacLocalChannelIO *pChanIO = 0;
this->lock ();
tsDLIterConstBD < cacServiceIO > iter ( this->services.first () );
while ( iter.valid () ) {
iter->show ( level );
iter++;
}
this->unlock ();
}