From cd06c8e9371ae6965b1d987836d39ff11bb6c6bd Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 24 Jul 2002 00:28:11 +0000 Subject: [PATCH] provide noop eventSignal() to be called if they post events while in the casStrmClient destructor --- src/cas/generic/casEventSys.cc | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/cas/generic/casEventSys.cc b/src/cas/generic/casEventSys.cc index e9ccba4d7..f20e97689 100644 --- a/src/cas/generic/casEventSys.cc +++ b/src/cas/generic/casEventSys.cc @@ -241,6 +241,36 @@ caStatus casEventSys::eventsOff() return S_cas_success; } +// this is a pure virtual function, but we nevertheless need a +// noop to be called if they post events when a channel is being +// destroyed when we are in the casStrmClient destructor +void casEventSys::eventSignal() +{ +} + +// this is a pure virtual function, but we nevertheless need a +// noop to be called if they call this when we are in the +// casStrmClient destructor +caStatus casEventSys::disconnectChan (caResId id) +{ + return S_cas_success; +} + +// this is a pure virtual function, but we nevertheless need a +// noop to be called if they call this when we are in the +// casStrmClient destructor +void casEventSys::eventFlush () +{ +} + +// this is a pure virtual function, but we nevertheless need a +// noop to be called if they call this when we are in the +// casStrmClient destructor +casRes * casEventSys::lookupRes ( const caResId &, casResType ) +{ + return 0; +} + // // casEventPurgeEv::cbFunc() //