TIMER: Cleanup

This commit is contained in:
dhewg 2011-03-22 11:53:10 +01:00
parent bb12acfa0f
commit 18d9654ca2
2 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ struct TimerSlot {
uint32 interval; // in microseconds
uint32 nextFireTime; // in milliseconds
uint32 nextFireTimeMicro; // mircoseconds part of nextFire
uint32 nextFireTimeMicro; // microseconds part of nextFire
TimerSlot *next;
};

View File

@ -40,9 +40,9 @@ private:
public:
DefaultTimerManager();
~DefaultTimerManager();
bool installTimerProc(TimerProc proc, int32 interval, void *refCon);
void removeTimerProc(TimerProc proc);
virtual ~DefaultTimerManager();
virtual bool installTimerProc(TimerProc proc, int32 interval, void *refCon);
virtual void removeTimerProc(TimerProc proc);
/**
* Timer callback, to be invoked at regular time intervals by the backend.