From e581e8822348261e252e3a10165493cc2869227b Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 13 Aug 2009 23:37:30 +0000 Subject: [PATCH] simplified the return from eventSysProcess because callers should not need to know how many messages were sent --- src/cas/generic/casCoreClient.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cas/generic/casCoreClient.h b/src/cas/generic/casCoreClient.h index 407122389..207e61e04 100644 --- a/src/cas/generic/casCoreClient.h +++ b/src/cas/generic/casCoreClient.h @@ -99,7 +99,7 @@ public: bool okToStartAsynchIO (); void setDestroyPending (); - casEventSys::processStatus eventSysProcess(); + casProcCond eventSysProcess(); caStatus addToEventQueue ( casAsyncIOI &, bool & onTheQueue, bool & posted ); @@ -172,7 +172,7 @@ inline void casCoreClient::postEvent ( } } -inline casEventSys::processStatus casCoreClient::eventSysProcess () +inline casProcCond casCoreClient :: eventSysProcess () { epicsGuard < casClientMutex > guard ( this->mutex ); return this->eventSys.process ( guard );