Skip to content

Commit

Permalink
TIMER: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dhewg committed Mar 22, 2011
1 parent bb12acf commit 18d9654
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backends/timer/default/default-timer.cpp
Expand Up @@ -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;
};
Expand Down
6 changes: 3 additions & 3 deletions backends/timer/default/default-timer.h
Expand Up @@ -40,9 +40,9 @@ class DefaultTimerManager : public Common::TimerManager {

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.
Expand Down

0 comments on commit 18d9654

Please sign in to comment.