timer queue name changes

This commit is contained in:
Jeff Hill
2001-03-08 21:54:45 +00:00
parent 6fccebc954
commit c6c4b1b4c3
6 changed files with 41 additions and 35 deletions

View File

@@ -33,15 +33,15 @@
timerQueueActiveMgr queueMgr;
epicsTimerQueue::~epicsTimerQueue () {}
epicsTimerQueueActive::~epicsTimerQueueActive () {}
epicsTimerQueue &epicsTimerQueue::allocate ( bool okToShare, int threadPriority )
epicsTimerQueueActive &epicsTimerQueueActive::allocate ( bool okToShare, int threadPriority )
{
return queueMgr.allocate ( okToShare, threadPriority );
}
timerQueueActive::timerQueueActive ( bool okToShareIn, unsigned priority ) :
queue ( *this ), thread ( *this, "epicsTimerQueue",
queue ( *this ), thread ( *this, "epicsTimerQueueActive",
epicsThreadGetStackSize ( epicsThreadStackMedium ), priority ),
okToShare ( okToShareIn ), exitFlag ( false ), terminateFlag ( false )
{