From c856fe54c88b5343e53fdbb59559ef2fa6d96292 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 10 Nov 1999 23:12:33 +0000 Subject: [PATCH] cosmetic --- src/cas/generic/mt/ioBlocked.cc | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/src/cas/generic/mt/ioBlocked.cc b/src/cas/generic/mt/ioBlocked.cc index 0f3d880f8..7233a6898 100644 --- a/src/cas/generic/mt/ioBlocked.cc +++ b/src/cas/generic/mt/ioBlocked.cc @@ -3,13 +3,9 @@ // Author: Jeff Hill // This file implements a IO blocked list NOOP for multi-threaded systems // -// $Log$ -// Revision 1.1 1996/11/02 01:01:24 jhill -// installed -// -// #include + #include "casdef.h" @@ -29,11 +25,17 @@ ioBlocked::~ioBlocked() } // -// ioBlocked::ioBlockedSignal() +// ioBlocked::ioBlockedSignal () // -void ioBlocked::ioBlockedSignal() +void ioBlocked::ioBlockedSignal () { - printf("in virtual base ioBlocked::ioBlockedSignal() ?\n"); + // + // this must _not_ be pure virtual because + // there are situations where this is called + // inbetween the derived class's and this base + // class's destructors, and therefore a + // NOOP is required + // } // @@ -59,14 +61,6 @@ void ioBlockedList::signal() { } -// -// ioBlockedList::removeItemFromIOBLockedList() -// (NOOP on MT system) -// -void ioBlockedList::removeItemFromIOBLockedList(ioBlocked &) -{ -} - // // ioBlockedList::addItemToIOBLockedList() // (NOOP on MT system)