2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

poll-loop: Fix typo in comment.

Reported-by: Ethan Jackson <ethan@nicira.com>
This commit is contained in:
Ben Pfaff
2011-05-27 09:13:50 -07:00
parent db16e36ed1
commit d19cedb28f

View File

@@ -151,10 +151,10 @@ poll_immediate_wake(const char *where)
* arguments have two possible interpretations:
*
* - If 'pollfd' is nonnull then it should be the "struct pollfd" that caused
* the wakeup. In this case, 'timeout' is ignored.
* the wakeup. 'timeout' is ignored.
*
* - If 'pollfd' is nonnull then 'timeout' is the number of milliseconds
* after which the poll loop woke up.
* - If 'pollfd' is NULL then 'timeout' is the number of milliseconds after
* which the poll loop woke up.
*/
static void
log_wakeup(const char *where, const struct pollfd *pollfd, int timeout)