diff options
author | Todd Poynor <toddpoynor@google.com> | 2013-09-10 17:03:45 -0700 |
---|---|---|
committer | Todd Poynor <toddpoynor@google.com> | 2013-09-12 12:42:34 -0700 |
commit | 4665ede960301144eeebcf6b145ac83fd9d2c778 (patch) | |
tree | 272b204c701a97c95ed7ad9b0f156235dff62d65 /minui | |
parent | e7265df3523d27c9f59829c858de256cf063da26 (diff) | |
download | bootable_recovery-4665ede960301144eeebcf6b145ac83fd9d2c778.zip bootable_recovery-4665ede960301144eeebcf6b145ac83fd9d2c778.tar.gz bootable_recovery-4665ede960301144eeebcf6b145ac83fd9d2c778.tar.bz2 |
minui: add ev_get_epollfd() to retrieve epoll file descriptor
To allow use of ev_* functions with an external main loop.
Change-Id: If73717b64d7c455ca726b90a815a31c1edf52544
Diffstat (limited to 'minui')
-rw-r--r-- | minui/events.c | 5 | ||||
-rw-r--r-- | minui/minui.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/minui/events.c b/minui/events.c index fe364bf..008a7d8 100644 --- a/minui/events.c +++ b/minui/events.c @@ -132,6 +132,11 @@ int ev_add_fd(int fd, ev_callback cb, void *data) return ret; } +int ev_get_epollfd(void) +{ + return epollfd; +} + void ev_exit(void) { while (ev_count > 0) { diff --git a/minui/minui.h b/minui/minui.h index 805c58b..ab08202 100644 --- a/minui/minui.h +++ b/minui/minui.h @@ -67,6 +67,7 @@ int ev_wait(int timeout); int ev_get_input(int fd, unsigned int epevents, struct input_event *ev); void ev_dispatch(void); +int ev_get_epollfd(void); // Resources |