removed unused member function

This commit is contained in:
Jeff Hill
2001-02-21 18:32:46 +00:00
parent 379b452241
commit 36fc409e30
2 changed files with 0 additions and 17 deletions
-1
View File
@@ -141,7 +141,6 @@ public:
epicsTimer & createTimer ( epicsTimerNotify & );
void process ();
double getNextExpireDelay () const;
void reschedule ();
void show ( unsigned int level ) const;
void release ();
private:
@@ -56,22 +56,6 @@ epicsTimer & timerQueueNonThreaded::createTimer ( epicsTimerNotify & notifyIn )
return *pTmr;
}
void timerQueueNonThreaded::reschedule ()
{
//
// Only useful in a multi-threaded program ...
//
// If a select() based file descriptor manager was waiting
// in select () this routine should force it to wake up
// and rescheduale its delay, but since file descriptor managers
// typically are only be used in single-threaded programs, and
// in fact the file descriptor manager currently supplied
// with EPICS is not thread safe, then perhaps
// its not worth the effort to tightly integrate this with
// the file descriptor manager so that this can be implemented.
//
}
void timerQueueNonThreaded::process ()
{
this->queue.process ();