X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Ftimer.c;h=e90355bdb2b2ca9aa477a955d1da4e120ac7e8a7;hb=c5cf10598f8c9f4428291e9df3ecd72a05fb1ccf;hp=84d20a401d2b720ccdffea6268a27da75886ad25;hpb=b2fda3effc787f265b5ad5dfa967ac00627bd075;p=sliver-openvswitch.git diff --git a/lib/timer.c b/lib/timer.c index 84d20a401..e90355bdb 100644 --- a/lib/timer.c +++ b/lib/timer.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 Nicira Networks. + * Copyright (c) 2011, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,11 +32,15 @@ timer_msecs_until_expired(const struct timer *timer) } } -/* Causes poll_block() to wake when 'timer' expires. */ +/* Causes poll_block() to wake when 'timer' expires. + * + * ('where' is used in debug logging. Commonly one would use timer_wait() to + * automatically provide the caller's source file and line number for + * 'where'.) */ void -(timer_wait)(const struct timer *timer, const char *where) +timer_wait_at(const struct timer *timer, const char *where) { if (timer->t < LLONG_MAX) { - (poll_timer_wait_until)(timer->t, where); + poll_timer_wait_until_at(timer->t, where); } }