X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Ftimer.c;h=84d20a401d2b720ccdffea6268a27da75886ad25;hb=05e547e7ee479fa2c3ca5bc9d2eb57bc8a07bdb8;hp=1c3c0f488a5b660e1a24f1e4e50892106e706492;hpb=76c9c4231400245864addfc7a8aabaa79843b4bd;p=sliver-openvswitch.git diff --git a/lib/timer.c b/lib/timer.c index 1c3c0f488..84d20a401 100644 --- a/lib/timer.c +++ b/lib/timer.c @@ -34,22 +34,9 @@ timer_msecs_until_expired(const struct timer *timer) /* Causes poll_block() to wake when 'timer' expires. */ void -timer_wait(const struct timer *timer) +(timer_wait)(const struct timer *timer, const char *where) { if (timer->t < LLONG_MAX) { - poll_timer_wait_until(timer->t); - } -} - -/* Returns the time at which 'timer' was set with 'duration'. Infinite timers - * were enabled at time LLONG_MAX. Manually expired timers were enabled at - * LLONG_MIN. */ -long long int -timer_enabled_at(const struct timer *timer, long long int duration) -{ - switch (timer->t) { - case LLONG_MAX: return LLONG_MAX; - case LLONG_MIN: return LLONG_MIN; - default: return timer->t - duration; + (poll_timer_wait_until)(timer->t, where); } }