added diagnostics

This commit is contained in:
Jeff Hill
2000-09-06 00:35:00 +00:00
parent 87a8230100
commit 2fa3e3d139
10 changed files with 127 additions and 18 deletions

View File

@@ -104,5 +104,17 @@ extern "C" void putNotifyCompletion ( putNotify *ppn )
pBlocker->block.signal ();
}
void dbPutNotifyBlocker::show ( unsigned level ) const
{
printf ( "put notify blocker at %p\n", this );
if ( level > 0u ) {
printf ( "\tdbPutNotifyIO at %p\n", this->pPN );
printf ( "\tdbChannelIO at %p\n", &this->chan );
}
if ( level > 1u ) {
this->block.show ( level - 2u );
}
}