From 249c3bf3b98b19fb660b617c8b31ac08a3a99964 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 8 Mar 2001 22:13:51 +0000 Subject: [PATCH] fix file modified while installed in include --- src/libCom/fdmgr/fdManager.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/libCom/fdmgr/fdManager.h b/src/libCom/fdmgr/fdManager.h index 60084d219..8f4027006 100644 --- a/src/libCom/fdmgr/fdManager.h +++ b/src/libCom/fdmgr/fdManager.h @@ -197,6 +197,13 @@ inline resTableIndex fdRegId::hash (unsigned) const return hashid; } +inline void fdManager::lazyInitTimerQueue () +{ + if ( ! this->pTimerQueue ) { + this->pTimerQueue = & epicsTimerQueuePassive::create ( *this ); + } +} + inline epicsTimerQueue & fdManager::timerQueueRef () { this->lazyInitTimerQueue ();