From 5555ea4edcfbb26003a4da8910f59b53b0d81794 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 10 Oct 2001 22:57:41 +0000 Subject: [PATCH] supressed message about orphaned IO requests at exit because it is perfectly normal for channels and therefore subscription IO blocks to exist at exit (its the user's responsability to delete them. --- src/ca/cac.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/ca/cac.cpp b/src/ca/cac.cpp index bfb1d0189..77adb2114 100644 --- a/src/ca/cac.cpp +++ b/src/ca/cac.cpp @@ -282,12 +282,9 @@ cac::~cac () this->beaconTable.traverse ( &bhe::destroy ); - // if we get here and the IO is still attached then we have a - // leaked io block that was not registered with a channel. - if ( this->ioTable.numEntriesInstalled () ) { - this->printf ( "CAC %u orphaned IO items?\n", - this->ioTable.numEntriesInstalled () ); - } + // its ok for channels and subscriptions to still + // exist at this point. The user created them and + // its his responsibility to clean them up. osiSockRelease ();