fixed gnu warnings

This commit is contained in:
Jeff Hill
2000-02-08 23:15:18 +00:00
parent b2273b8a37
commit 8026cdc26a
4 changed files with 19 additions and 7 deletions
+1 -1
View File
@@ -319,7 +319,7 @@ void osiTimer::unlock () const
//
osiTimerQueue::osiTimerQueue (unsigned managerThreadPriority) :
osiThread ("osiTimerQueue", threadGetStackSize (threadStackMedium), managerThreadPriority),
inProcess (false), pExpireTmr (0), terminateFlag (false)
pExpireTmr (0), inProcess (false), terminateFlag (false)
{
}
+1 -1
View File
@@ -167,7 +167,7 @@ class osiTimerQueue : public osiThread {
friend class osiTimer;
public:
osiTimerQueue (unsigned managerThreadPriority = threadPriorityMin);
~osiTimerQueue();
virtual ~osiTimerQueue();
double delayToFirstExpire () const; // returns seconds
void process ();
void show (unsigned level) const;