aboutsummaryrefslogtreecommitdiff
path: root/src/timer.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-11-05 09:39:50 +0100
committerMax Kellermann <max@duempel.org>2010-11-05 09:39:56 +0100
commitad430c661780ed196d772564f9a49d5dacb5df0f (patch)
tree3038fd6ebea6663a3942428552b66e480ea74982 /src/timer.h
parentec48b5ea3ac25d4b27c3b942017309b408fc3ac0 (diff)
timer: add function timer_delay()
Diffstat (limited to 'src/timer.h')
-rw-r--r--src/timer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/timer.h b/src/timer.h
index 684367bc..bbd895b3 100644
--- a/src/timer.h
+++ b/src/timer.h
@@ -40,6 +40,12 @@ void timer_reset(Timer *timer);
void timer_add(Timer *timer, int size);
+/**
+ * Returns the number of milliseconds to sleep to get back to sync.
+ */
+unsigned
+timer_delay(const Timer *timer);
+
void timer_sync(Timer *timer);
#endif