summaryrefslogtreecommitdiff
path: root/lib/timer.h
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-05-11 18:13:35 -0700
committerEthan Jackson <ethan@nicira.com>2011-05-13 13:09:27 -0700
commitdd986e09fdbb79be4a7e8dbb77dca8f68c04c321 (patch)
tree493dd14b92ef1942a123bff5ddd65b4578d9cdac /lib/timer.h
parentaa7f11584301a81cbf89a7557bc0acc3c0e3b9ad (diff)
downloadopenvswitch-dd986e09fdbb79be4a7e8dbb77dca8f68c04c321.tar.gz
cfm: Replace recv_time with a flag.
This makes the code more obviously correct in my opinion. This patch also removes timer_enabled_at() along with its only user.
Diffstat (limited to 'lib/timer.h')
-rw-r--r--lib/timer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/timer.h b/lib/timer.h
index 730205566..d2bfd86b0 100644
--- a/lib/timer.h
+++ b/lib/timer.h
@@ -26,7 +26,6 @@ struct timer {
};
long long int timer_msecs_until_expired(const struct timer *);
-long long int timer_enabled_at(const struct timer *, long long int duration);
void timer_wait(const struct timer *);
/* Causes 'timer' to expire when 'duration' milliseconds have passed.