Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(919)

Unified Diff: eloop.h

Issue 2428004: Overhaul dhcpcd for chrome os use (Closed) Base URL: ssh://git@chromiumos-git//dhcpcd.git
Patch Set: purge hooks from configure to silence complaint Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dhcpcd-run-hooks.8.in ('k') | eloop.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: eloop.h
diff --git a/eloop.h b/eloop.h
index d699e1ecd9c97cb2d972b1964ec96696c63a79da..7a96cc9dccd6816931b146f10caa0477ac9c3492 100644
--- a/eloop.h
+++ b/eloop.h
@@ -30,7 +30,8 @@
#include <time.h>
-void add_event(int fd, void (*)(void *), void *);
+int add_event(int fd, void (*)(void *), void *);
+int add_event_flags(int fd, int flags, void (*)(int, void *), void *);
void delete_event(int fd);
void add_timeout_sec(time_t, void (*)(void *), void *);
void add_timeout_tv(const struct timeval *, void (*)(void *), void *);
« no previous file with comments | « dhcpcd-run-hooks.8.in ('k') | eloop.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698